Refactor treesitter plugins
Remove the `p.` prefix.
This commit is contained in:
parent
8de23561ec
commit
b7c347fa10
|
@ -99,42 +99,43 @@ rec {
|
||||||
vimPlugins.nvim-dap-virtual-text
|
vimPlugins.nvim-dap-virtual-text
|
||||||
|
|
||||||
# Treesitter
|
# Treesitter
|
||||||
(vimPlugins.nvim-treesitter.withPlugins (p: [
|
(pkgs.vimPlugins.nvim-treesitter.withPlugins (
|
||||||
p.bash
|
plugins: with plugins; [
|
||||||
p.comment
|
bash
|
||||||
p.css
|
comment
|
||||||
p.csv
|
css
|
||||||
p.dockerfile
|
csv
|
||||||
p.gitattributes
|
dockerfile
|
||||||
p.gitignore
|
gitattributes
|
||||||
p.go
|
gitignore
|
||||||
p.html
|
go
|
||||||
p.javascript
|
html
|
||||||
p.json
|
javascript
|
||||||
p.just
|
json
|
||||||
p.kdl
|
kdl
|
||||||
p.lua
|
lua
|
||||||
p.luadoc
|
luadoc
|
||||||
p.make
|
make
|
||||||
p.markdown
|
markdown
|
||||||
p.markdown_inline
|
markdown_inline
|
||||||
p.nix
|
nix
|
||||||
p.php
|
php
|
||||||
p.phpdoc
|
phpdoc
|
||||||
p.query
|
query
|
||||||
p.rst
|
rst
|
||||||
p.scss
|
scss
|
||||||
p.sql
|
sql
|
||||||
p.terraform
|
terraform
|
||||||
p.tmux
|
tmux
|
||||||
p.twig
|
twig
|
||||||
p.typescript
|
typescript
|
||||||
p.vim
|
vim
|
||||||
p.vimdoc
|
vimdoc
|
||||||
p.vue
|
vue
|
||||||
p.xml
|
xml
|
||||||
p.yaml
|
yaml
|
||||||
]))
|
]
|
||||||
|
))
|
||||||
vimPlugins.nvim-treesitter-context
|
vimPlugins.nvim-treesitter-context
|
||||||
vimPlugins.nvim-treesitter-textobjects
|
vimPlugins.nvim-treesitter-textobjects
|
||||||
|
|
||||||
|
|
Reference in a new issue