mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-24 04:21:26 -05:00
Compare commits
No commits in common. "37be82d294c1ecb1d13a1ca2ce8a7d9ef46864ba" and "a8abf099112ef3122cf2588aba7e7f2744586b33" have entirely different histories.
37be82d294
...
a8abf09911
2 changed files with 2 additions and 9 deletions
|
@ -409,13 +409,6 @@ endfun
|
||||||
hi! link @number.scss @number.css
|
hi! link @number.scss @number.css
|
||||||
hi! link @property.scss @property.css
|
hi! link @property.scss @property.css
|
||||||
hi! link @variable.scss @variable.css
|
hi! link @variable.scss @variable.css
|
||||||
|
|
||||||
"diff
|
|
||||||
call s:C("@attribute.diff",g:cYellow,"","")
|
|
||||||
call s:C("@constant.diff",g:cBlue,"","italic")
|
|
||||||
call s:C("@diff.minus",g:cYellow,"","")
|
|
||||||
call s:C("@diff.plus",g:cBlue,"","")
|
|
||||||
call s:C("@function.diff",g:cRed,"","bold")
|
|
||||||
endif
|
endif
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ if (vim.g.enabletreesitter == 1) then
|
||||||
vim.opt.runtimepath:append(parser_dir)
|
vim.opt.runtimepath:append(parser_dir)
|
||||||
|
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
ensure_installed = { "bash", "c", "cpp", "css", "diff", "git_config", "go", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "scss", "toml", "typescript", "vim", "vimdoc", "vue" },
|
ensure_installed = { "bash", "c", "cpp", "css", "git_config", "go", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "toml", "typescript", "vim", "vimdoc", "vue" },
|
||||||
sync_install = true,
|
sync_install = true,
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
parser_install_dir = parser_dir,
|
parser_install_dir = parser_dir,
|
||||||
|
@ -18,7 +18,7 @@ if (vim.g.enabletreesitter == 1) then
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
disable = { "gitcommit", "markdown" },
|
disable = { "gitcommit", "markdown" },
|
||||||
additional_vim_regex_highlighting = { "diff", "scss" },
|
additional_vim_regex_highlighting = { "scss" },
|
||||||
},
|
},
|
||||||
|
|
||||||
textobjects = {
|
textobjects = {
|
||||||
|
|
Loading…
Reference in a new issue