diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2025-07-08 14:44:47 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2025-07-08 14:44:47 +0100 |
commit | 87508e153b2217e13abd029fd654505fe04f90ac (patch) | |
tree | acfbd28101fc32411a7499dbc0f1e689025e2044 | |
parent | 0412c3319bc709b9fe244d64a6a696fa6de8a148 (diff) |
Set colourschemes back to default
-rw-r--r-- | ghostty/Library/Application Support/com.mitchellh.ghostty/config | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/colourscheme.lua | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/lualine.lua | 5 |
3 files changed, 6 insertions, 3 deletions
diff --git a/ghostty/Library/Application Support/com.mitchellh.ghostty/config b/ghostty/Library/Application Support/com.mitchellh.ghostty/config index 3a0a70b..39b4f83 100644 --- a/ghostty/Library/Application Support/com.mitchellh.ghostty/config +++ b/ghostty/Library/Application Support/com.mitchellh.ghostty/config @@ -42,7 +42,7 @@ font-size = 13 # # which is explained in the docs for that config option. # # Just for example: # resize-overlay-duration = 4s 200ms -theme = light:nord-light,dark:nord +theme = light:Builtin Light,dark:Builtin Dark macos-titlebar-style = native shell-integration-features = title,sudo,cursor font-thicken = true diff --git a/neovim/.config/nvim/lua/config/colourscheme.lua b/neovim/.config/nvim/lua/config/colourscheme.lua index 6450d46..edba16f 100644 --- a/neovim/.config/nvim/lua/config/colourscheme.lua +++ b/neovim/.config/nvim/lua/config/colourscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "nord" +local colorscheme = "xcode" vim.o.background = "light" local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not ok then diff --git a/neovim/.config/nvim/lua/config/lualine.lua b/neovim/.config/nvim/lua/config/lualine.lua index 5155bda..2617a5a 100644 --- a/neovim/.config/nvim/lua/config/lualine.lua +++ b/neovim/.config/nvim/lua/config/lualine.lua @@ -39,7 +39,10 @@ local config = { -- Disable sections and component separators component_separators = '', section_separators = '', - theme = 'nord', + theme = { + normal = { c = { fg = colors.fg, bg = colors.bg } }, + inactive = { c = { fg = colors.fg, bg = colors.bg } }, + }, }, sections = { -- these are to remove the defaults |