From 47a8763fc9ec15b88e68626aaab9713472163ce5 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 16 Jun 2023 14:18:55 -0400 Subject: [PATCH] Revert "neovim(nvim-tree): Highlight default.nix" This actually makes the default.nix stand out a bit *too* much. --- home/neovim.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/home/neovim.nix b/home/neovim.nix index 5379cc21..136ab7f9 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -134,11 +134,7 @@ in plugin = nvim-tree-lua; type = "lua"; config = /* lua */ '' - require("nvim-tree").setup({ - renderer = { - special_files = { "Cargo.toml", "default.nix", "Makefile", "README.md", "readme.md" } - } - }) + require("nvim-tree").setup() vim.api.nvim_create_autocmd({"QuitPre"}, { callback = function() vim.cmd("NvimTreeClose") end