Remove treesitter from neovim

Not an in line replacement yet.
Stuff like auto indent in php doesn't work yet.
No benefit for me for now.
This commit is contained in:
Daniel Siepmann 2022-05-30 17:14:17 +02:00
parent e80a1034a5
commit 56f0e7ce8d
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 0 additions and 93 deletions

View file

@ -304,52 +304,6 @@ in {
'';
}
# Treesitter
{
# Installs all available grammars:
# plugin = nvim-treesitter.withPlugins(plugins: pkgs.tree-sitter.allGrammars);
# Installs only configured grammars:
plugin = nvim-treesitter.withPlugins(plugins: with pkgs.tree-sitter-grammars; [
tree-sitter-php
tree-sitter-vim
tree-sitter-rst
tree-sitter-lua
tree-sitter-css
tree-sitter-yaml
tree-sitter-scss
tree-sitter-json
tree-sitter-html
tree-sitter-bash
tree-sitter-json5
tree-sitter-python
tree-sitter-markdown
tree-sitter-typescript
tree-sitter-javascript
tree-sitter-dockerfile
]);
type = "lua";
config = pkgs.lib.fileContents ./neovim/plugins/treesitter.lua;
}
{
# Used to inspect node types to extend colorscheme
# Installed for ":TSHighlightCapturesUnderCursor"
plugin = playground;
type = "lua";
config = ''
require("nvim-treesitter.configs").setup({
playground = {
enable = true,
},
})
'';
}
# LSP (=Language Server Protocol)
{

View file

@ -1,47 +0,0 @@
require('nvim-treesitter.configs').setup {
-- One of "all", "maintained" (parsers with maintainers), or a list of languages
-- ensure_installed = { "lua", "php", },
-- Install languages synchronously (only applied to `ensure_installed`)
-- sync_install = false,
highlight = {
-- `false` will disable the whole extension
enable = true,
-- NOTE: these are the names of the parsers and not the filetype. (for example if you want to
-- disable highlighting for the `tex` filetype, you need to include `latex` in this list as this is
-- the name of the parser)
-- list of language that will be disabled
disable = {
-- Seems not to be compatible, queries for unkown nodes
-- Does not work right now, outdated?
-- :checkhealth shows these errors:
--# The following errors have been detected:
-- - ERROR: nix(highlights): ...ed-0.7.0/share/nvim/runtime/lua/vim/treesitter/query.lua:172: query: invalid node type at position 268
-- nix(highlights) is concatenated from the following files:
-- | [ERROR]:"/nix/store/8pr8slfjc3yrj4m4fa14hjw1xkjl950b-vim-pack-dir/pack/home-manager/start/nvim-treesitter/queries/nix/highlights.scm", failed to load: ...ed-0.7.0/share/nvim/runtime/lua/vim/ treesitter/query.lua:172: query: invalid node type at position 268
-- - ERROR: nix(locals): ...ed-0.7.0/share/nvim/runtime/lua/vim/treesitter/query.lua:172: query: invalid node type at position 16
-- nix(locals) is concatenated from the following files:
-- | [ERROR]:"/nix/store/8pr8slfjc3yrj4m4fa14hjw1xkjl950b-vim-pack-dir/pack/home-manager/start/nvim-treesitter/queries/nix/locals.scm", failed to load: ...ed-0.7.0/share/nvim/runtime/lua/vim/
-- treesitter/query.lua:172: query: invalid node type at position 16
-- - ERROR: nix(folds): ...ed-0.7.0/share/nvim/runtime/lua/vim/treesitter/query.lua:172: query: invalid node type at position 86
-- nix(folds) is concatenated from the following files:
-- | [ERROR]:"/nix/store/8pr8slfjc3yrj4m4fa14hjw1xkjl950b-vim-pack-dir/pack/home-manager/start/nvim-treesitter/queries/nix/folds.scm", failed to load: ...ed-0.7.0/share/nvim/runtime/lua/vim/
-- treesitter/query.lua:172: query: invalid node type at position 86
-- tree-sitter-nix
"nix",
},
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = false,
-- additional_vim_regex_highlighting = { "" },
},
indent = {
enable = true,
},
}