From 03599fa7d757ad3e3dc33acaa4be8e14fcdee2ac Mon Sep 17 00:00:00 2001 From: ElKowar <5300871+elkowar@users.noreply.github.com> Date: Sat, 23 Oct 2021 12:42:14 +0200 Subject: [PATCH] hard constrast vim on laptop --- nvim/.config/nvim/fnl/dots/plugins/gruvbox8.fnl | 4 +++- nvim/.config/nvim/fnl/dots/plugins/telescope.fnl | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) 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")