summaryrefslogtreecommitdiff
path: root/configs/appearance.vim
blob: c1d9443f5127c9886ccf0864951c0220a28c3d60 (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
" 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"
colorscheme tokyonight

" 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

set fillchars+=diff:╱