mirror of
https://github.com/nmasur/dotfiles
synced 2024-12-27 09:54:53 +00:00
73 lines
2.4 KiB
Lua
73 lines
2.4 KiB
Lua
|
-- =======================================================================
|
||
|
-- Syntax
|
||
|
-- =======================================================================
|
||
|
|
||
|
local M = {}
|
||
|
|
||
|
M.packer = function(use)
|
||
|
-- Syntax engine
|
||
|
use({
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
commit = "9ada5f70f98d51e9e3e76018e783b39fd1cd28f7",
|
||
|
run = ":TSUpdate",
|
||
|
config = function()
|
||
|
require("nvim-treesitter.configs").setup({
|
||
|
ensure_installed = {
|
||
|
"hcl",
|
||
|
"python",
|
||
|
"lua",
|
||
|
"nix",
|
||
|
"fish",
|
||
|
"toml",
|
||
|
"yaml",
|
||
|
"json",
|
||
|
},
|
||
|
auto_install = true,
|
||
|
highlight = { enable = true },
|
||
|
indent = { enable = true },
|
||
|
})
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
-- Syntax-aware Textobjects
|
||
|
use({
|
||
|
"nvim-treesitter/nvim-treesitter-textobjects",
|
||
|
requires = { "nvim-treesitter/nvim-treesitter" },
|
||
|
config = function()
|
||
|
require("nvim-treesitter.configs").setup({
|
||
|
textobjects = {
|
||
|
select = {
|
||
|
enable = true,
|
||
|
lookahead = true, -- Jump forward automatically
|
||
|
keymaps = {
|
||
|
["af"] = "@function.outer",
|
||
|
["if"] = "@function.inner",
|
||
|
["ac"] = "@class.outer",
|
||
|
["ic"] = "@class.inner",
|
||
|
["al"] = "@loop.outer",
|
||
|
["il"] = "@loop.inner",
|
||
|
["aa"] = "@call.outer",
|
||
|
["ia"] = "@call.inner",
|
||
|
["ar"] = "@parameter.outer",
|
||
|
["ir"] = "@parameter.inner",
|
||
|
["aC"] = "@comment.outer",
|
||
|
["iC"] = "@comment.outer",
|
||
|
["a/"] = "@comment.outer",
|
||
|
["i/"] = "@comment.outer",
|
||
|
["a;"] = "@statement.outer",
|
||
|
["i;"] = "@statement.outer",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
-- Additional syntax sources
|
||
|
use("chr4/nginx.vim") --- Nginx syntax
|
||
|
use("towolf/vim-helm") --- Helm syntax
|
||
|
use("rodjek/vim-puppet") --- Puppet syntax
|
||
|
end
|
||
|
|
||
|
return M
|