diff --git a/Makefile b/Makefile index 4d517c8..dce636b 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ default: clean: -rm -rf $(HOME)/.local/share/nvim -rm -rf $(HOME)/.local/state/nvim + -rm -rf $(HOME)/.cache/nvim -rm $(BIN_DIR)/nvim -rm $(BIN_DIR)/direnv -rm -rf $(FONTS_DIR)/FiraCode diff --git a/lua/plugins/edgy.lua b/lua/plugins/edgy.lua index 31b2d7d..f8b39f0 100644 --- a/lua/plugins/edgy.lua +++ b/lua/plugins/edgy.lua @@ -1,5 +1,6 @@ return { "folke/edgy.nvim", + enabled = false, event = "VeryLazy", opts = { bottom = { diff --git a/lua/plugins/symbols-outline.lua b/lua/plugins/symbols-outline.lua index 6fbb7d0..bb8abc8 100644 --- a/lua/plugins/symbols-outline.lua +++ b/lua/plugins/symbols-outline.lua @@ -3,5 +3,6 @@ return { cond = not vim.g.vscode, cmd = "SymbolsOutline", dependencies = { "neovim/nvim-lspconfig" }, + init = function() vim.keymap.set("n", "no", "SymbolsOutline ") end, config = true, } diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 2a70c29..d606e3e 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,6 +1,5 @@ return { "nvim-treesitter/nvim-treesitter", - cond = function() return vim.fn.executable "nix" == 1 end, version = false, build = ":TSUpdate", event = { "BufReadPre", "BufNewFile" }, @@ -18,7 +17,7 @@ return { require("nvim-treesitter.configs").setup(opts) end, opts = { - auto_install = true, + auto_install = vim.fn.executable "nix" == 1, highlight = { enable = true, disable = { "fortran" },