From d29b2e1012c2fdd448843b4003648f77ea5f5727 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Fri, 29 Aug 2025 16:56:33 +0200 Subject: [PATCH] Refactor all the custom modules into better structures. Clear separation of keybindings that belong to cusstom modules. Added custom snippets and vsc snippets. --- README.md | 7 ------- lua/plugins/treesitter.lua | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2183eaf..e0f8136 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,6 @@ libc bash ``` -Optionally for more lsp servers. - -``` -go -npm -``` - ## General This configuration is based on the lazy plugin manager. diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 7392a0c..5cf93a9 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -2,12 +2,12 @@ return { { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", - priority = 1000, -- Load before everything else + priority = 1000, config = function() local configs = require("nvim-treesitter.configs") configs.setup({ sync_install = true, - ensure_installed = { "typst", "go", "bash", "python", "nix" }, + ensure_installed = { "typst", "go", "bash", "python", "nix", "lua" }, highlight = { enable = true }, indent = { enable = true }, })