]> git.armaanb.net Git - dotfiles.git/blobdiff - .config/nvim/init.vim
nvim: make nohl binding silent
[dotfiles.git] / .config / nvim / init.vim
index 602038e28ffa58f6544d644943c6e4110e6d9f63..d7d0c22d9d050bd6ab3d1ea05d1a83544358c752 100644 (file)
@@ -6,11 +6,13 @@ map Q <nop>
 
 " Plugins
 call plug#begin()
+Plug 'ackyshake/vimcompletesme'      " Simple autocompletion
 Plug 'ap/vim-css-color'              " Highlight css colors
 Plug 'ctrlpvim/ctrlp.vim'            " Fuzzy file finding
 Plug 'editorconfig/editorconfig-vim' " Follow editorconfig
+Plug 'godlygeek/tabular'             " Line things up
 Plug 'meain/hima-vim'                " Nice color scheme
-Plug 'sheerun/vim-polyglot'          " Language pack 
+Plug 'sheerun/vim-polyglot'          " Language pack
 Plug 'tpope/vim-commentary'          " Easily comment
 Plug 'tpope/vim-rsi'                 " Readline bindings
 Plug 'tpope/vim-sensible'            " Sensible defaults
@@ -29,4 +31,4 @@ nnoremap <C-l> <C-w><C-l>
 nnoremap <C-h> <C-w><C-h>
 
 " Clear search highlighting
-nnoremap <C-c> :noh<CR>
+nnoremap <silent> <C-c> :noh<CR>