summaryrefslogtreecommitdiff
path: root/configs/appearance.vim
blob: 2c8137034aa12faba9380236615d82f10a1299e0 (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
" 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 substrata

" Function, identifier and comments in italic
highlight Function cterm=italic gui=italic
highlight Indentifier cterm=italic 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