summaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/config
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@krotosaudio.com>2024-08-29 15:59:50 +0100
committerMichaël Ball <michael.ball@krotosaudio.com>2024-08-29 15:59:50 +0100
commit043d17f116e1428f7ca8bfd233eb0b3918feedfb (patch)
tree37699fe5d7bdf04c829d488a371c02d7ec43cc64 /neovim/.config/nvim/lua/config
parent770410f2cdd9aa41758a08dd782e6754eaebd668 (diff)
Neovim conf
Diffstat (limited to 'neovim/.config/nvim/lua/config')
-rw-r--r--neovim/.config/nvim/lua/config/colourscheme.lua2
-rw-r--r--neovim/.config/nvim/lua/config/lazy.lua2
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 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 2d9b70f..7e08cf4 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 = { "onedark" }, missing = true },
+ install = { colorscheme = { "xcode" }, missing = true },
-- automatically check for plugin updates
checker = { enabled = true, notify = false },
})