Add nvim-treesitter.withAllGrammars

This commit is contained in:
Dave Gallant
2022-12-31 16:55:54 -05:00
parent 4bb76ac3cd
commit 995d59d801
2 changed files with 3 additions and 5 deletions

View File

@@ -380,9 +380,7 @@ in {
nvim-cmp nvim-cmp
nvim-lspconfig nvim-lspconfig
nvim-tree-lua nvim-tree-lua
/* nvim-treesitter.withAllGrammars
nvim-treesitter
*/
nvim-ts-rainbow nvim-ts-rainbow
nvim-web-devicons nvim-web-devicons
packer-nvim packer-nvim
@@ -406,5 +404,5 @@ in {
home.file.".config/nvim/lua".source = ./nvim/lua; home.file.".config/nvim/lua".source = ./nvim/lua;
home.file.".config/srv".source = ./srv; home.file.".config/srv".source = ./srv;
home.file."..aws/config".source = ./.aws/config; home.file.".aws/config".source = ./.aws/config;
} }

View File

@@ -113,7 +113,7 @@ vim.api.nvim_set_keymap("n", "<space>", "za", { silent = true, noremap = true })
-- packer {{{1 ------------------------------------------------------------------- -- packer {{{1 -------------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
require("packer").startup(function() require("packer").startup(function()
use({ "nvim-treesitter/nvim-treesitter" }) -- use({ "nvim-treesitter/nvim-treesitter" })
end) end)
------------------------------------------------------------------------------- -------------------------------------------------------------------------------