This commit is contained in:
Evie Litherland-Smith 2023-06-10 08:29:32 +01:00
commit 5ae6d83c32
4 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -1,5 +1,6 @@
return {
"folke/edgy.nvim",
enabled = false,
event = "VeryLazy",
opts = {
bottom = {

View file

@ -3,5 +3,6 @@ return {
cond = not vim.g.vscode,
cmd = "SymbolsOutline",
dependencies = { "neovim/nvim-lspconfig" },
init = function() vim.keymap.set("n", "<leader>no", "<cmd>SymbolsOutline <cr>") end,
config = true,
}

View file

@ -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" },