Compare commits

..

No commits in common. "c6b9e654116ff929905e56a6b43c75afaf5a9b64" and "2d994cc0be747ec0a8970bf97a402af2cf01de43" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ return {
svelte = { "eslint_d" }, svelte = { "eslint_d" },
python = { "pylint" }, python = { "pylint" },
ansible = { "woke" }, ansible = { "woke" },
markdown = { "woke", "proselint" }, markdown = { "woke" },
text = { "woke" }, text = { "woke" },
sh = { "woke" }, sh = { "woke" },
} }

View file

@ -17,7 +17,7 @@ return {
-- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages -- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
ensure_installed = { ensure_installed = {
"lua", "lua",
"comment", -- used for TODO:, FIXME:, XXX: and NOTE: "comment", -- used for TODO/FIXME/NOTE etc
"vim", "vim",
"vimdoc", "vimdoc",
"bash", "bash",
@ -61,8 +61,8 @@ return {
incremental_selection = { incremental_selection = {
enable = true, enable = true,
keymaps = { keymaps = {
init_selection = "<C-s>", init_selection = "<C-space>",
node_incremental = "<C-s>", node_incremental = "<C-space>",
scope_incremental = false, scope_incremental = false,
node_decremental = "<bs>", node_decremental = "<bs>",
}, },