-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.vim
66 lines (40 loc) · 1.44 KB
/
theme.vim
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"let g:material_theme_style = "darker"
"let g:material_terminal_italics = 1
"colorscheme monokai_pro
lua << EOF
require'nvim-treesitter.configs'.setup {
ensure_installed = "all", -- one of "all", "maintained" (parsers with maintainers), or a list of languages
highlight = {
enable = true, -- false will disable the whole extension
disable = { "c", "rust" }, -- list of language that will be disabled
},
rainbow = {
enable = true,
extended_mode = true, -- Highlight also non-parentheses delimiters, boolean or table: lang -> boolean
max_file_lines = 1000, -- Do not enable for files with more than 1000 lines, int
}
}
EOF
" configure nvcode-color-schemes
let g:nvcode_termcolors=256
" colorscheme nvcode " Or whatever colorscheme you make
let g:sonokai_style = 'shusia'
let g:sonokai_enable_italic = 1
let g:sonokai_disable_italic_comment = 1
colorscheme sonokai
" checks if your terminal has 24-bit color support
if (has("termguicolors"))
set termguicolors
hi LineNr ctermbg=NONE guibg=NONE
endif
let g:airline_theme = "minimalist"
""""""""""AIRLINE
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
"gitgutter
let g:gitgutter_sign_added = "▌"
let g:gitgutter_sign_modified = "▌"
let g:gitgutter_sign_removed = "▁"
let g:gitgutter_sign_removed_first_line = "▔"
let g:gitgutter_sign_removed_above_and_below = "▁"
let g:gitgutter_sign_modified_removed = "▁"