MAINT: reboot vimrc
This commit is contained in:
parent
6368c7f1a6
commit
42906e0b5d
3 changed files with 27 additions and 0 deletions
|
@ -21,10 +21,14 @@ $ nix-env -i \
|
||||||
reattach-to-user-namespace \
|
reattach-to-user-namespace \
|
||||||
silver-searcher \
|
silver-searcher \
|
||||||
tmux \
|
tmux \
|
||||||
|
universal-ctags \
|
||||||
vim \
|
vim \
|
||||||
wget \
|
wget \
|
||||||
xz
|
xz
|
||||||
$ base16_ashes
|
$ 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 AndrsDC.base16-themes
|
||||||
$ code --install-extension ecmel.vscode-html-css
|
$ code --install-extension ecmel.vscode-html-css
|
||||||
$ code --install-extension formulahendry.auto-close-tag
|
$ code --install-extension formulahendry.auto-close-tag
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
~/.gitignore_global: git/gitignore_global
|
~/.gitignore_global: git/gitignore_global
|
||||||
~/.npmrc: npmrc
|
~/.npmrc: npmrc
|
||||||
~/.psqlrc: psqlrc
|
~/.psqlrc: psqlrc
|
||||||
|
~/.vimrc: vimrc
|
||||||
~/.zpreztorc: zsh/zpreztorc
|
~/.zpreztorc: zsh/zpreztorc
|
||||||
~/.zlogin: zsh/zlogin
|
~/.zlogin: zsh/zlogin
|
||||||
~/.zlogout: zsh/zlogout
|
~/.zlogout: zsh/zlogout
|
||||||
|
|
22
vimrc
Normal file
22
vimrc
Normal file
|
@ -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'
|
Loading…
Add table
Reference in a new issue