feat: bust up the project, refresh upstream
This commit is contained in:
parent
a3cd76746c
commit
2079778b89
47 changed files with 1446 additions and 1205 deletions
34
lua/killtheliterate/plugins/treesitter.lua
Normal file
34
lua/killtheliterate/plugins/treesitter.lua
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
return {
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
dependencies = {
|
||||
'nvim-treesitter/nvim-treesitter-textobjects',
|
||||
'JoosepAlviste/nvim-ts-context-commentstring',
|
||||
},
|
||||
build = ':TSUpdate',
|
||||
config = function()
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = {
|
||||
'css',
|
||||
'html',
|
||||
'javascript',
|
||||
'json',
|
||||
'lua',
|
||||
'python',
|
||||
'scss',
|
||||
'svelte',
|
||||
'tsx',
|
||||
'typescript',
|
||||
'vim',
|
||||
},
|
||||
}
|
||||
|
||||
require('ts_context_commentstring').setup {
|
||||
}
|
||||
|
||||
require('Comment').setup {
|
||||
pre_hook = require('ts_context_commentstring.integrations.comment_nvim').create_pre_hook(),
|
||||
}
|
||||
|
||||
vim.g.skip_ts_context_commentstring_module = true
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue