{"id":2227,"date":"2021-03-30T06:02:26","date_gmt":"2021-03-29T21:02:26","guid":{"rendered":"http:\/\/blog.anyons.net\/?p=2227"},"modified":"2022-07-12T14:42:59","modified_gmt":"2022-07-12T05:42:59","slug":"ubuntu-setting","status":"publish","type":"post","link":"https:\/\/anyons.net\/?p=2227","title":{"rendered":"Ubuntu zsh vim Setting"},"content":{"rendered":"\n<pre class=\"lang:sh decode:true \">apt install build-essential\napt install net-tools\napt install openssh-server\nsystemctl enable ssh\nsystemctl restart ssh\napt install curl\napt install tmux\napt install mc\napt install git\n\napt install zsh\nsh -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/ohmyzsh\/ohmyzsh\/master\/tools\/install.sh)\"\nchsh -s \/usr\/bin\/zsh # logout \ud544\uc694\nzsh # \uc77c\ub2e8 \ud55c\ubc88 \uc2e4\ud589\ngit clone https:\/\/github.com\/zsh-users\/zsh-autosuggestions.git $ZSH_CUSTOM\/plugins\/zsh-autosuggestions\ngit clone https:\/\/github.com\/zsh-users\/zsh-syntax-highlighting.git $ZSH_CUSTOM\/plugins\/zsh-syntax-highlighting\nvi .zshrc\n\nd2coding \uc124\uce58\n\napt install neovim\ncurl -sLf https:\/\/spacevim.org\/install.sh | bash\nvi\nvi init.vim\nvi init.toml\ncurl -fLo ~\/.vim\/autoload\/plug.vim --create-dirs https:\/\/raw.githubusercontent.com\/junegunn\/vim-plug\/master\/plug.vim\nvi # \uc2e4\ud589\ud6c4 :PlugInstall\ncd .\/vim\/bundle\/vimproc.vim\nmake\n\napt install nodejs\napt install npm\nnpm install jshint \n<\/pre>\n<p>.zshrc<\/p>\n<pre class=\"lang:sh decode:true \"># Set name of the theme to load --- if set to \"random\", it will\n# load a random theme each time oh-my-zsh is loaded, in which case,\n# to know which specific one was loaded, run: echo $RANDOM_THEME\n# See https:\/\/github.com\/ohmyzsh\/ohmyzsh\/wiki\/Themes\nZSH_THEME=\"agnoster\"\n\n# Uncomment the following line if you want to change the command execution time\n# stamp shown in the history command output.\n# You can set one of the optional three formats:\n# \"mm\/dd\/yyyy\"|\"dd.mm.yyyy\"|\"yyyy-mm-dd\"\n# or set a custom format using the strftime function format specifications,\n# see 'man strftime' for details.\n# HIST_STAMPS=\"mm\/dd\/yyyy\"\nexport HISTSIZE=10000\nexport SAVEHIST=10000\nsetopt EXTENDED_HISTORY\n\n# Which plugins would you like to load?\n# Standard plugins can be found in $ZSH\/plugins\/ # Custom plugins may be added to $ZSH_CUSTOM\/plugins\/\n# Example format: plugins=(rails git textmate ruby lighthouse)\n# Add wisely, as too many plugins slow down shell startup.\nplugins=(\n\tgit\n\tzsh-syntax-highlighting\n\tzsh-autosuggestions\n\ttmux\n\tcolored-man-pages\n\tcolorize\n\tsvn\n)<\/pre>\n<p>.\/.SpaceVim\/init.vim<\/p>\n<pre class=\"lang:sh decode:true\">\"=============================================================================\n\" init.vim --- Entry file for neovim\n\" Copyright (c) 2016-2020 Wang Shidong &amp; Contributors\n\" Author: Wang Shidong &lt; wsdjeg@outlook.com &gt;\n\" URL: https:\/\/spacevim.org\n\" License: GPLv3\n\"=============================================================================\n   \ncall plug#begin(\"~\/.vim\/plugged\")\n   \nPlug 'vim-airline\/vim-airline'    \" vim status bar\nPlug 'airblade\/vim-gitgutter'   \" Show git status in vim\nPlug 'iamcco\/markdown-preview.nvim'\n\ncall plug#end()\n\nexecute 'source' fnamemodify(expand('&lt;sfile&gt;'), ':h').'\/main.vim'\n\nfiletype plugin on\n\nset vb\nset nu\nset nuw=5             \" \uc904 \ubc88\ud638 \ud45c\uc2dc \ub108\ube44\nset backspace=eol,start,indent\n\n\" \ud3b8\uc9d1 \uae30\ub2a5 \uc124\uc815\nset sol\nset sm\n\n\" \uac80\uc0c9 \uae30\ub2a5 \uc124\uc815\nset hlsearch\nset ignorecase\nset showmatch\n\n\" indent \uc124\uc815\nset cindent\nset autoindent\nset smartindent\nset tabstop=4\nset shiftwidth=4\nset softtabstop=4\nset noet              \" \ud0ed -&gt; \uacf5\ubc31 \ubcc0\ud658\uae30\ub2a5 no\n\n\" Turn off swap\nset noswapfile\nset nobackup\nset nowb\n\nset whichwrap+=&lt;,&gt;,h,l,[,]<\/pre>\n<p>.\/.SpaceVim.d\/init.toml<\/p>\n<pre class=\"lang:sh decode:true \">#=============================================================================\n# basic.toml --- basic configuration example for SpaceVim\n# Copyright (c) 2016-2020 Wang Shidong &amp; Contributors\n# Author: Wang Shidong &lt; wsdjeg at 163.com &gt;\n# URL: https:\/\/spacevim.org\n# License: GPLv3\n#=============================================================================\n\n# All SpaceVim option below [option] section\n[options]\n# set spacevim theme. by default colorscheme layer is not loaded,\n# if you want to use more colorscheme, please load the colorscheme\n# layer\ncolorscheme = \"onedark\"\ncolorscheme_bg = \"dark\"\n# Disable guicolors in basic mode, many terminal do not support 24bit\n# true colors\nenable_guicolors = false\n# Disable statusline separator, if you want to use other value, please\n# install nerd fonts\nstatusline_separator = \"nil\"\nstatusline_iseparator = \"bar\"\nbuffer_index_type = 4\nwindows_index_type = 3\nenable_tabline_filetype_icon = false\nenable_statusline_mode = false\nstatusline_unicode_symbols = false\n# Enable vim compatible mode, avoid changing origin vim key bindings\nvimcompatible = true\n\n# Enable autocomplete layer\n[[layers]]\nname = 'autocomplete'\nauto_completion_return_key_behavior = \"complete\"\nauto_completion_tab_key_behavior = \"cycle\"\n[[layers]]\nname = 'shell'\ndefault_position = 'top'\ndefault_height = 30<\/pre>\n<p>\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p> apt install build-essential apt install net-tools apt install openssh-server systemctl enable ssh systemctl restart ssh apt install curl apt install tmux apt install mc apt install git apt install zsh sh -c &#8220;$(curl -fsSL https:\/\/raw.githubusercontent.com\/ohmyzsh\/ohmyzsh\/master\/tools\/install.sh)&#8221; chsh -s \/usr\/bin\/zsh # logout \ud544\uc694 zsh # \uc77c\ub2e8 \ud55c\ubc88 \uc2e4\ud589 git clone https:\/\/github.com\/zsh-users\/zsh-autosuggestions.git $ZSH_CUSTOM\/plugins\/zsh-autosuggestions git clone https:\/\/github.com\/zsh-users\/zsh-syntax-highlighting.git $ZSH_CUSTOM\/plugins\/zsh-syntax-highlighting [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[94,165],"tags":[448,449,450,210,62,447],"class_list":["post-2227","post","type-post","status-publish","format-standard","hentry","category-configuration","category-system","tag-neovim","tag-ohmyzsh","tag-spacevim","tag-ubuntu","tag-vim","tag-zsh","odd"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ubuntu zsh vim Setting - anydragon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anyons.net\/?p=2227\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu zsh vim Setting - anydragon\" \/>\n<meta property=\"og:description\" content=\"apt install build-essential apt install net-tools apt install openssh-server systemctl enable ssh systemctl restart ssh apt install curl apt install tmux apt install mc apt install git apt install zsh sh -c &quot;$(curl -fsSL https:\/\/raw.githubusercontent.com\/ohmyzsh\/ohmyzsh\/master\/tools\/install.sh)&quot; chsh -s \/usr\/bin\/zsh # logout \ud544\uc694 zsh # \uc77c\ub2e8 \ud55c\ubc88 \uc2e4\ud589 git clone https:\/\/github.com\/zsh-users\/zsh-autosuggestions.git $ZSH_CUSTOM\/plugins\/zsh-autosuggestions git clone https:\/\/github.com\/zsh-users\/zsh-syntax-highlighting.git $ZSH_CUSTOM\/plugins\/zsh-syntax-highlighting [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anyons.net\/?p=2227\" \/>\n<meta property=\"og:site_name\" content=\"anydragon\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-29T21:02:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T05:42:59+00:00\" \/>\n<meta name=\"author\" content=\"anydragon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@anydragon\" \/>\n<meta name=\"twitter:site\" content=\"@anydragon\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"anydragon\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227\"},\"author\":{\"name\":\"anydragon\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"headline\":\"Ubuntu zsh vim Setting\",\"datePublished\":\"2021-03-29T21:02:26+00:00\",\"dateModified\":\"2022-07-12T05:42:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227\"},\"wordCount\":12,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"keywords\":[\"neovim\",\"ohmyzsh\",\"spacevim\",\"ubuntu\",\"vim\",\"zsh\"],\"articleSection\":[\"Configuration\",\"System\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=2227#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227\",\"url\":\"https:\\\/\\\/anyons.net\\\/?p=2227\",\"name\":\"Ubuntu zsh vim Setting - anydragon\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\"},\"datePublished\":\"2021-03-29T21:02:26+00:00\",\"dateModified\":\"2022-07-12T05:42:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=2227\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=2227#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/anyons.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ubuntu zsh vim Setting\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\",\"url\":\"https:\\\/\\\/anyons.net\\\/\",\"name\":\"anydragon\",\"description\":\"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang\",\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/anyons.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\",\"name\":\"anydragon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"url\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"contentUrl\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"width\":2560,\"height\":1440,\"caption\":\"anydragon\"},\"logo\":{\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\"},\"sameAs\":[\"http:\\\/\\\/anyons.net\",\"https:\\\/\\\/www.facebook.com\\\/anydragon\",\"https:\\\/\\\/x.com\\\/anydragon\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCr78KWpvmk398vPfpUTWNLg\"],\"url\":\"https:\\\/\\\/anyons.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ubuntu zsh vim Setting - anydragon","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/anyons.net\/?p=2227","og_locale":"ko_KR","og_type":"article","og_title":"Ubuntu zsh vim Setting - anydragon","og_description":"apt install build-essential apt install net-tools apt install openssh-server systemctl enable ssh systemctl restart ssh apt install curl apt install tmux apt install mc apt install git apt install zsh sh -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/ohmyzsh\/ohmyzsh\/master\/tools\/install.sh)\" chsh -s \/usr\/bin\/zsh # logout \ud544\uc694 zsh # \uc77c\ub2e8 \ud55c\ubc88 \uc2e4\ud589 git clone https:\/\/github.com\/zsh-users\/zsh-autosuggestions.git $ZSH_CUSTOM\/plugins\/zsh-autosuggestions git clone https:\/\/github.com\/zsh-users\/zsh-syntax-highlighting.git $ZSH_CUSTOM\/plugins\/zsh-syntax-highlighting [...]","og_url":"https:\/\/anyons.net\/?p=2227","og_site_name":"anydragon","article_publisher":"https:\/\/www.facebook.com\/anydragon","article_author":"https:\/\/www.facebook.com\/anydragon","article_published_time":"2021-03-29T21:02:26+00:00","article_modified_time":"2022-07-12T05:42:59+00:00","author":"anydragon","twitter_card":"summary_large_image","twitter_creator":"@anydragon","twitter_site":"@anydragon","twitter_misc":{"\uae00\uc4f4\uc774":"anydragon","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/anyons.net\/?p=2227#article","isPartOf":{"@id":"https:\/\/anyons.net\/?p=2227"},"author":{"name":"anydragon","@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"headline":"Ubuntu zsh vim Setting","datePublished":"2021-03-29T21:02:26+00:00","dateModified":"2022-07-12T05:42:59+00:00","mainEntityOfPage":{"@id":"https:\/\/anyons.net\/?p=2227"},"wordCount":12,"commentCount":0,"publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"keywords":["neovim","ohmyzsh","spacevim","ubuntu","vim","zsh"],"articleSection":["Configuration","System"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anyons.net\/?p=2227#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anyons.net\/?p=2227","url":"https:\/\/anyons.net\/?p=2227","name":"Ubuntu zsh vim Setting - anydragon","isPartOf":{"@id":"https:\/\/anyons.net\/#website"},"datePublished":"2021-03-29T21:02:26+00:00","dateModified":"2022-07-12T05:42:59+00:00","breadcrumb":{"@id":"https:\/\/anyons.net\/?p=2227#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anyons.net\/?p=2227"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/anyons.net\/?p=2227#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anyons.net\/"},{"@type":"ListItem","position":2,"name":"Ubuntu zsh vim Setting"}]},{"@type":"WebSite","@id":"https:\/\/anyons.net\/#website","url":"https:\/\/anyons.net\/","name":"anydragon","description":"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang","publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anyons.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":["Person","Organization"],"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b","name":"anydragon","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","url":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","contentUrl":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","width":2560,"height":1440,"caption":"anydragon"},"logo":{"@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg"},"sameAs":["http:\/\/anyons.net","https:\/\/www.facebook.com\/anydragon","https:\/\/x.com\/anydragon","https:\/\/www.youtube.com\/channel\/UCr78KWpvmk398vPfpUTWNLg"],"url":"https:\/\/anyons.net\/?author=1"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":2814,"url":"https:\/\/anyons.net\/?p=2814","url_meta":{"origin":2227,"position":0},"title":"azure ubuntu \uc124\uce58 ver 2022","author":"anydragon","date":"2022\ub144 09\uc6d4 06\uc77c","format":false,"excerpt":"TimeZone Setting ls -l \/etc\/localtime cd \/etc sudo rm -rf localtime sudo ln -s \/usr\/share\/zoneinfo\/Asia\/Seoul localtime # time changed UTC -> KST date package update sudo apt update sudo apt upgrade do-release-upgrade sudo apt autoclean sudo apt autoremove Util Install & Setting # install Utils sudo apt install build-essential sudo\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1215,"url":"https:\/\/anyons.net\/?p=1215","url_meta":{"origin":2227,"position":1},"title":"2021\ub144 mac \uc5d0\uc11c \uc0ac\uc6a9\ud558\uace0 \uc788\ub294 \ud504\ub85c\uadf8\ub7a8 \ubaa9\ub85d","author":"anydragon","date":"2021\ub144 03\uc6d4 27\uc77c","format":false,"excerpt":"\uad6c\uc785\ubaa9\ub85d\uc5d0 \uc788\ub294 \ud504\ub85c\uadf8\ub7a8\ub4e4 \uc804\ubd80 \uc124\uce58 \ubc0f \uc5c5\ub370\uc774\ud2b8 Microsoft Remote Desktop Microsoft OneNote OneDrive Notability CheetSheet GoodNote 5 VsCode Valentina Studio Friendly Streaming Browser Facebook Messenger Skype Amphetamine SnailGit SnailSVN HazeOver Slack deepClock \ud55c\ucef4\uc624\ud53c\uc2a4 \ud55c\uae00 2014 VP \ubdf0\uc5b4 \ubb34\ube44\uc2a4\ud2b8 \uce74\uce74\uc624\ud1a1 \ub124\uc774\ud2b8\uc628 Band Telegram isHUD MachineProfile Blackmagic Disk Speed Test \uac01 \ud648\ud398\uc774\uc9c0\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2589,"url":"https:\/\/anyons.net\/?p=2589","url_meta":{"origin":2227,"position":2},"title":"mac osx zsh neovim \ud658\uacbd\uc124\uc815","author":"anydragon","date":"2022\ub144 07\uc6d4 02\uc77c","format":false,"excerpt":"~\/.zshrc # Set name of the theme to load --- if set to \"random\", it will # load a random theme each time oh-my-zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME # See https:\/\/github.com\/ohmyzsh\/ohmyzsh\/wiki\/Themes #ZSH_THEME=\"robbyrussell\" ZSH_THEME=\"agnoster\" # Uncomment the following line\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2313,"url":"https:\/\/anyons.net\/?p=2313","url_meta":{"origin":2227,"position":3},"title":"Ubuntu 20.04 \uc5d0 Bitcoin Core \uc124\uce58","author":"anydragon","date":"2021\ub144 04\uc6d4 05\uc77c","format":false,"excerpt":"# Install Dependencies # ----------------------------------------------------------------------------------------------------------- # Build requirements: sudo apt install git build-essential libtool autotools-dev autoconf automake pkg-config bsdmainutils python3 libssl-dev libssl-dev # Install required dependencies sudo apt install libevent-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev # Install the BerkeleyDB from Ubuntu repositories: sudo apt install libdb-dev libdb++-dev libsqlite3-dev # Optional: upnpc\u2026","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2820,"url":"https:\/\/anyons.net\/?p=2820","url_meta":{"origin":2227,"position":4},"title":"ubuntu openvpn client \uad6c\uc131","author":"anydragon","date":"2022\ub144 09\uc6d4 04\uc77c","format":false,"excerpt":"openvpn \uc124\uce58 sudo apt install openvpn \uc11c\ubc84\uc5d0\uc11c ca.crt, ta.key, client.conf, client.ovpn, client.crt, client.key \ud30c\uc77c\uc744 \uc900\ube44 \uc704 \ud30c\uc77c\ub4e4\uc744 \/etc\/openvpn\uc73c\ub85c \ubcf5\uc0ac \/etc\/default\/openvpn \ud30c\uc77c \uc218\uc815 AUTOSTART=\"all\" \ub2e4\uc74c \uba85\ub839\uc73c\ub85c \uc11c\ube44\uc2a4 \ub4f1\ub85d, \uc2dc\uc791 sudo systemctl enable openvpn@client.service sudo systemctl daemon-reload sudo service openvpn@client start \u00a0","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1317,"url":"https:\/\/anyons.net\/?p=1317","url_meta":{"origin":2227,"position":5},"title":"Mac Brew\ub85c \ud328\ud0a4\uc9c0 \uad00\ub9ac","author":"anydragon","date":"2017\ub144 06\uc6d4 08\uc77c","format":false,"excerpt":"Brew \uba85\ub839\uc5b4 brew search formula \/\/ \ud328\ud0a4\uc9c0 \uac80 brew install formula \/\/ \ud328\ud0a4\uc9c0 \uc124\uce58 brew remove formula \/\/ \ud328\ud0a4\uc9c0 \uc0ad\uc81c brew info formula \/\/ \ud328\ud0a4\uc9c0 \uc815\ubcf4 brew switch formula 2.1.1 \/\/ \ud2b9\uc815 \ubc84\uc804\uc73c\ub85c \ubcc0\uacbd brew upgrade [formula] \/\/ \uc124\uce58\ud55c \ud328\ud0a4\uc9c0\uc758 \ucd5c\uc2e0\ubc84\uc804\uc744 \uc124\uce58 brew list \ub610\ub294 brew ls \/\/ \uc124\uce58\ud55c formula\u2026","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/2227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2227"}],"version-history":[{"count":0,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/2227\/revisions"}],"wp:attachment":[{"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2227"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2227"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}