nix/nvim: add stop vertical lines

This commit is contained in:
Dmitriy Pleshevskiy 2022-06-23 14:10:16 +03:00
parent 72eb89ab0a
commit 07ecdb7e73
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215

View file

@ -13,8 +13,10 @@ set encoding=utf-8
set termguicolors set termguicolors
" Theme (required plugin 'material-vim') " Theme (required plugin 'material-vim')
"let g:material_theme_style = 'default' | 'palenight' | 'ocean' | 'lighter' | 'darker' | 'default-community' | 'palenight-community' | 'ocean-community' | 'lighter-community' | 'darker-community' "let g:material_theme_style = 'default' | 'palenight' | 'ocean' | 'lighter' |
let g:material_theme_style = 'ocean-community' " 'darker' | 'default-community' | 'palenight-community' | 'ocean-community' |
" 'lighter-community' | 'darker-community'
let g:material_theme_style = 'ocean'
let g:lightline = { 'colorscheme': 'material_vim' } let g:lightline = { 'colorscheme': 'material_vim' }
colorscheme material colorscheme material
@ -51,6 +53,9 @@ set clipboard=unnamedplus " Copy/Past to/from clipboard
set cursorline " Highlight line cursor is currently on set cursorline " Highlight line cursor is currently on
set completeopt+=noinsert " Select the first item of popup menu automatically without inserting it set completeopt+=noinsert " Select the first item of popup menu automatically without inserting it
" Vertical lines
set colorcolumn=81,101,121
" Search " Search
set incsearch " Incremental search. set incsearch " Incremental search.
set ignorecase " Case insensitive. set ignorecase " Case insensitive.