Fix Treesitter (#2)

* Why does this work?

* source color file :)
This commit is contained in:
pollen__ 2022-02-21 02:11:26 -06:00 committed by GitHub
parent fcb39b053e
commit c5da909ed2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -1,2 +1,3 @@
local hl_map = vim.treesitter.highlighter.hl_map require "nvim-treesitter.highlight"
hl_map['clisp.function'] = "MyGroup" local hlmap = vim.treesitter.highlighter.hl_map
hlmap["clisp.function"] = "RedrawDebugRecompose"

View file

@ -7,3 +7,4 @@ let g:dotfiles_rainbow_indent_opacity = 0.5
source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
luafile <sfile>:p:h/init.lua luafile <sfile>:p:h/init.lua
luafile <sfile>:p:h/colors/clisp.lua

View file

@ -12,6 +12,11 @@ parser_configs.norg = {
} }
require('nvim-treesitter.configs').setup { require('nvim-treesitter.configs').setup {
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
ensure_installed = { "norg" }, ensure_installed = { "norg" },
playground = { playground = {
enable = true, enable = true,