blob: 8d8707584d38e3409a13e37a95271ea297448d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
" Neovim true colors
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" Visualize Tabs and spaces
set list listchars=tab:▸\ ,extends:›,precedes:‹,nbsp:·,trail:· ",eol:¬
" Colorschemes
set termguicolors
set background=dark
"let g:tokyonight_style = "night"
let g:nord_contrast = v:true
let g:nord_borders = v:false
let g:nord_disable_background = v:false
let g:nord_italic = v:false
colorscheme nord
" Function, identifier and comments in italic
highlight Function cterm=italic gui=italic
highlight Indentifier cterm=none gui=italic
highlight Comment cterm=italic gui=italic
" Cursor line
"set cursorline
" Number of screenlines for command-line
set cmdheight=2
" Split the right way
set splitright splitbelow
" Popup menu height
set pumheight=10
" Support 256 colors
set t_Co=256
set fillchars+=diff:╱
|