nix/nvim: add stop vertical lines
This commit is contained in:
parent
72eb89ab0a
commit
07ecdb7e73
1 changed files with 7 additions and 2 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue