blob: 46926ebff6adb47df556c40f285b4ee5649f9487 (
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
|
" 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
colorscheme wal
" Function, identifier and comments in italic
highlight Function cterm=italic gui=italic
highlight Indentifier cterm=italic gui=italic
highlight Comment cterm=italic gui=italic
" 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
|