From e23d8c3633148360304909ea88bb097ab771c338 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 28 Oct 2023 12:15:22 +0800 Subject: [PATCH] nvim: update colorscheme config --- nvim/lua/plugins/appearance.lua | 9 ++++++++- nvim/lua/settings.lua | 1 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/appearance.lua b/nvim/lua/plugins/appearance.lua index f9a3d1c..2bf57cc 100644 --- a/nvim/lua/plugins/appearance.lua +++ b/nvim/lua/plugins/appearance.lua @@ -7,7 +7,14 @@ return { "RRethy/nvim-base16", -- Make your Neovim pretty - "rktjmp/lush.nvim", + { + "rktjmp/lush.nvim", + priority = 1000, + module = true, + config = function() + vim.cmd("colorscheme fds-theme") + end, + }, -- More useful status bar "vim-airline/vim-airline", diff --git a/nvim/lua/settings.lua b/nvim/lua/settings.lua index 0ae9891..4e89caf 100644 --- a/nvim/lua/settings.lua +++ b/nvim/lua/settings.lua @@ -27,7 +27,6 @@ function module.setup() vim.cmd("highlight clear SpellCap") vim.cmd("highlight clear SpellRare") vim.cmd("highlight Visual term=reverse cterm=reverse") - vim.cmd("colorscheme fds-theme") -- Keybindings vim.keymap.set("n", "bd", ":bd", {})