diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-02-18 21:39:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 21:39:58 +0100 |
commit | 2026a19378674f61d9eff7545b561f54c0f09599 (patch) | |
tree | 1a906f206ed36257e4440c750978cfc7a4af4eb4 | |
parent | e68619973482c8311829b6b0622dddcb949105b4 (diff) |
vim: update vim, add css-color and indentline
-rwxr-xr-x | vim/.vimrc | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -11,11 +11,13 @@ Plugin 'vim-airline/vim-airline-themes' Plugin 'junegunn/fzf', {'dir': '~/.fzf', 'do': './install --all'} | Plugin 'junegunn/fzf.vim' " fuzzy finder Plugin 'luochen1990/rainbow' " color parentheses Plugin 'dense-analysis/ale' " checker syntax -Plugin 'leafOfTree/vim-vue-plugin' +Plugin 'posva/vim-vue' Plugin 'terryma/vim-multiple-cursors' Plugin 'tpope/vim-fugitive' " git extension for commit logs and etc. Plugin 'neoclide/coc.nvim', {'branch': 'release'} Plugin 'editorconfig/editorconfig-vim' +Plugin 'ap/vim-css-color' +Plugin 'Yggdroot/indentLine' call vundle#end() " required @@ -63,8 +65,15 @@ set lazyredraw set ttyfast let g:fzf_preview_window = 'right:70%' + let g:ale_fix_on_save = 1 +let g:airline_theme='onedark' + +let g:indentLine_char = '¦' + +let g:vue_pre_processors = ['pug', 'scss'] + filetype plugin indent on set nocompatible @@ -119,4 +128,3 @@ nnoremap :pa :set paste<CR> nnoremap :npa :set nopaste<CR> nmap <F2> <Plug>(coc-definition) -let g:airline_theme='onedark' |