diff --git a/nvim/.config/nvim/fnl/dots/plugins/gruvbox8.fnl b/nvim/.config/nvim/fnl/dots/plugins/gruvbox8.fnl index af3a816..5279518 100644 --- a/nvim/.config/nvim/fnl/dots/plugins/gruvbox8.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins/gruvbox8.fnl @@ -7,7 +7,9 @@ (set vim.g.gruvbox_filetype_hi_groups 1) (set vim.g.gruvbox_plugin_hi_groups 1) -(vim.cmd "colorscheme gruvbox8") +(if (= "epix" (vim.fn.hostname)) + (vim.cmd "colorscheme gruvbox8_hard") + (vim.cmd "colorscheme gruvbox8")) (utils.highlight :SignColumn {:bg colors.dark0}) diff --git a/nvim/.config/nvim/fnl/dots/plugins/telescope.fnl b/nvim/.config/nvim/fnl/dots/plugins/telescope.fnl index c225994..ca85269 100644 --- a/nvim/.config/nvim/fnl/dots/plugins/telescope.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins/telescope.fnl @@ -9,6 +9,5 @@ :extensions {:frecency {:persistent_filter false}}}) (telescope.load_extension "dap") -(telescope.load_extension "packer") (utils.keymap :n : ":Telescope find_files")