X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/5ce1acc6d9c34ce13591dd4f6a09bd81256e75ec..ccdacf21dc7d84e54dc22e5398d5ecb4fb2912ec:/vim/vimrc?ds=inline diff --git a/vim/vimrc b/vim/vimrc index 93f8bd0..d5b0610 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -146,14 +146,16 @@ Plug 'jenterkin/vim-autosource' " {{{2 call plug#end() filetype plugin indent on +syntax on " colorscheme {{{1 -syntax on set background=dark let &t_8f = "\[38;2;%lu;%lu;%lum" let &t_8b = "\[48;2;%lu;%lu;%lum" set termguicolors -colorscheme $THEME +if !has('nvim') + colorscheme $THEME +endif "TODO see how I can integrate this into a theme that customises upstream Nord hi debugPC term=reverse ctermbg=8 @@ -181,6 +183,7 @@ set lazyredraw " don't redraw while executing macros set list " show chars defined in 'listchars' set listchars=tab:❭\ " list of strings used for list mode set listchars+=extends:❯,precedes:❮ +set listchars+=nbsp:␣ " Only shown when not in insert mode set listchars+=trail:· augroup trailing