diff --git a/README.md b/README.md index 90b3390..1faaf28 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,14 @@ $ nix-env -i \ reattach-to-user-namespace \ silver-searcher \ tmux \ + universal-ctags \ vim \ wget \ xz $ base16_ashes +$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + $ code --install-extension AndrsDC.base16-themes $ code --install-extension ecmel.vscode-html-css $ code --install-extension formulahendry.auto-close-tag diff --git a/install.conf.yaml b/install.conf.yaml index 72f6151..545b3fd 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -17,6 +17,7 @@ ~/.gitignore_global: git/gitignore_global ~/.npmrc: npmrc ~/.psqlrc: psqlrc + ~/.vimrc: vimrc ~/.zpreztorc: zsh/zpreztorc ~/.zlogin: zsh/zlogin ~/.zlogout: zsh/zlogout diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..2e5cd00 --- /dev/null +++ b/vimrc @@ -0,0 +1,22 @@ +" filetype support provides filetype-specific indenting, syntax highlighting, +" omni-completion and other useful settings. +filetype plugin indent on + +syntax on + +" built-in plugin, `%` to jump to condition branch +runtime macros/matchit.vim + +set autoindent +set backspace=indent,eol,start +set hidden " have more than one unsaved buffer +set incsearch +set ruler " show position in bottom-right +set wildmenu + +call plug#begin('~/.vim/plugged') + Plug 'sheerun/vim-polyglot' + Plug 'ludovicchabant/vim-gutentags' +call plug#end() + +let g:gutentags_cache_dir = '~/.gutentags_cache'