diff options
| author | Marc Vertes <mvertes@free.fr> | 2020-02-15 22:18:28 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2020-02-15 22:18:28 +0100 |
| commit | 11c7eb57d446d634c55c39e0ad17287d36aab446 (patch) | |
| tree | daaace86d73d4e7d014ef5d9daa9491e1f5c9efa /.vimrc | |
| parent | 141502a84b8258095463becc4da6b2e19c311d8d (diff) | |
feat: make install using lt
First working version of lt, Added a makefile (not installed).
Could get rid of ~/.git which was interfering with rg, fzf.
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3,6 +3,7 @@ set nocp filetype plugin on call plug#begin() +Plug 'bilalq/lite-dfm' Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' } call plug#end() @@ -54,6 +55,11 @@ noremap <buffer> @ :s,^#,, " hi MatchParen cterm=reverse term=reverse ctermfg=white " +" Fix spell highlighting +hi clear SpellBad +hi SpellBad cterm=underline +hi SpellBad gui=undercurl + noremap <leader>o :!xdg-open <cfile>&<cr><cr> noremap <C-g> :tag <c-r><c-w><cr> |
