diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2024-07-30 07:28:00 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2024-07-30 07:28:00 +0100 |
commit | 34d996020d70035cd84cd359ab06a19f91e3fb1c (patch) | |
tree | 480f9b336d85dd93617d8eac718ae189188442ef /neovim/.config/nvim/lua/config | |
parent | 0fe7919aa5279dfe7d12e1a2e7aff1db92faba36 (diff) |
Config 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 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/neovim/.config/nvim/lua/config/colourscheme.lua b/neovim/.config/nvim/lua/config/colourscheme.lua index 56ae5b6..edba16f 100644 --- a/neovim/.config/nvim/lua/config/colourscheme.lua +++ b/neovim/.config/nvim/lua/config/colourscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "onedark" +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/lazy.lua b/neovim/.config/nvim/lua/config/lazy.lua index ef4c1e0..a109cd0 100644 --- a/neovim/.config/nvim/lua/config/lazy.lua +++ b/neovim/.config/nvim/lua/config/lazy.lua @@ -29,7 +29,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 = { "habamax" } }, + install = { colorscheme = { "xcode" }, missing = true }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { enabled = false }, }) |