diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2025-01-03 15:34:03 +0000 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2025-01-03 15:34:03 +0000 |
commit | 312faec0a27c208da2a017b0e1ab1a6d2d686b5f (patch) | |
tree | 5833b9daa1cec82e6df636bfc36ab158bc15e6d2 /neovim/.config/nvim/lua/config | |
parent | 278736ec4eef5cfe2759a55d3c8a1da68353eec1 (diff) |
Neovim conf updates
Diffstat (limited to 'neovim/.config/nvim/lua/config')
-rw-r--r-- | neovim/.config/nvim/lua/config/colourscheme.lua | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/lazy.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/neovim/.config/nvim/lua/config/colourscheme.lua b/neovim/.config/nvim/lua/config/colourscheme.lua index 6eb72e7..78e71a5 100644 --- a/neovim/.config/nvim/lua/config/colourscheme.lua +++ b/neovim/.config/nvim/lua/config/colourscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "oxocarbon" +local colorscheme = "xcodehc" vim.o.background = "light" local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not ok then diff --git a/neovim/.config/nvim/lua/config/lazy.lua b/neovim/.config/nvim/lua/config/lazy.lua index 723911e..f9671dc 100644 --- a/neovim/.config/nvim/lua/config/lazy.lua +++ b/neovim/.config/nvim/lua/config/lazy.lua @@ -30,7 +30,7 @@ require("lazy").setup({ }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "oxocarbon" }, missing = true }, + install = { colorscheme = { "xcodehc" }, missing = true }, -- automatically check for plugin updates checker = { enabled = true, notify = false }, }) |