From e14f0887797d1bf34b0e0040bca16a3063704681 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Tue, 3 Dec 2024 04:13:06 +0100 Subject: [PATCH] chore(nvim): switch theme --- nvimrc | 3 ++- vim/lua/lightline_config.lua | 2 +- zshenv | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nvimrc b/nvimrc index 2ea5a02..ec0dfea 100644 --- a/nvimrc +++ b/nvimrc @@ -98,7 +98,8 @@ endif " Colour scheme: packadd! nord-vim " https://github.com/arcticicestudio/nord-vim.git -colorscheme nord +packadd! gruvbox-material " https://github.com/sainnhe/gruvbox-material.git +colorscheme gruvbox-material augroup vimrc autocmd! diff --git a/vim/lua/lightline_config.lua b/vim/lua/lightline_config.lua index 06c62f3..389cb03 100644 --- a/vim/lua/lightline_config.lua +++ b/vim/lua/lightline_config.lua @@ -48,7 +48,7 @@ local diagnostics = { require("lualine").setup({ options = { icons_enabled = false, - theme = "nord", + theme = "gruxbox_dark", component_separators = "", section_separators = { left = "", right = "" }, }, diff --git a/zshenv b/zshenv index 9195099..8d903e8 100644 --- a/zshenv +++ b/zshenv @@ -19,7 +19,7 @@ export LS_COLORS="di=1;38;2;38;139;210:mi=1;38;2;220;50;47;48;2;238;232;213:ln=1 export GOPATH=$HOME/go # BAT: -export BAT_THEME=Nord +export BAT_THEME=gruxbox-dark # Postgres default user: export PGUSER=postgres