From: Alexander Goussas Date: Sun, 31 May 2026 15:31:18 +0000 (-0500) Subject: update nvim and ghostty colors X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=ef4f45dc517b67e2a4bd079f8008183c2b52b3b4;p=dotfiles.git update nvim and ghostty colors --- diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config index 078943c..2d31efa 100644 --- a/ghostty/.config/ghostty/config +++ b/ghostty/.config/ghostty/config @@ -1,5 +1,5 @@ # theme = Sakura -theme = Builtin Light +theme = IR Black copy-on-select = true adjust-cell-height = 10 quit-after-last-window-closed = true diff --git a/nvim/.config/nvim/lua/options.lua b/nvim/.config/nvim/lua/options.lua index 7cb4a2a..4ba073f 100644 --- a/nvim/.config/nvim/lua/options.lua +++ b/nvim/.config/nvim/lua/options.lua @@ -20,3 +20,8 @@ vim.o.termguicolors = true -- Netrw vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 + +vim.o.colorcolumn = '+1,120' +vim.o.textwidth = 80 + +vim.cmd('colorscheme wildcharm') diff --git a/nvim/.config/nvim/lua/plugins/colors.lua b/nvim/.config/nvim/lua/plugins/colors.lua index 6d04b10..4aa87ad 100644 --- a/nvim/.config/nvim/lua/plugins/colors.lua +++ b/nvim/.config/nvim/lua/plugins/colors.lua @@ -5,9 +5,5 @@ return { }, { 'yorickpeterse/nvim-grey', - config = function() - vim.opt.background = 'light' - vim.cmd('colorscheme grey') - end } }