restructure: removed some files, addet qol and ui for better distinguishability

This commit is contained in:
pika 2025-03-17 15:14:06 +01:00
parent 91efc5bfcd
commit 37c84420c1
20 changed files with 565 additions and 480 deletions

View file

@ -1,37 +0,0 @@
return {
"nvim-treesitter/nvim-treesitter",
event = { "BufReadPre", "BufNewFile" },
build = ":TSUpdate",
dependencies = {
"windwp/nvim-ts-autotag",
},
config = function()
require("nvim-treesitter.configs").setup({
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {
"bash",
"gitignore",
"git_config",
"markdown",
"markdown_inline",
"yaml",
"lua",
"ini",
"passwd",
"vim",
"vimdoc",
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<C-space>",
node_incremental = "<C-space>",
scope_incremental = false,
node_decremental = "<bs>",
},
},
})
end,
}