nix/nvim: change invisible chars

This commit is contained in:
Dmitriy Pleshevskiy 2022-06-23 23:35:37 +03:00
parent 2ef63823b2
commit d52dd5249f
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215

View file

@ -1,4 +1,4 @@
" Basic settings {{{
" Basic settings
filetype off
" Leaders
@ -48,10 +48,10 @@ set linebreak " Don't cut lines in the middle of a work.
set showmatch " Show matching parenthesis.
set matchtime=2 " Time during which the matching parenthesis is shown.
set formatoptions=jtcrq " Sensible default line auto cutting and formatting.
set listchars=tab:▸\ ,eol" Invisible characters representation when :set list.
set clipboard=unnamedplus " Copy/Past to/from clipboard
set cursorline " Highlight line cursor is currently on
set completeopt+=noinsert " Select the first item of popup menu automatically without inserting it
set listchars=tab:→\ ,trail:~,nbsp:␣,eol" Invisible characters representation when :set list.
" Search
set incsearch " Incremental search.