diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2025-06-05 13:56:04 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2025-06-05 13:56:04 +0100 |
commit | 6633d60ae483b06c06db86088436bf6b876165c3 (patch) | |
tree | 740da1da8ba3c29c4cec8491540cdc212b4ca05a /neovim | |
parent | 8299d72c6711d11238df46624951d19a0254b9e8 (diff) |
Nord theme
Diffstat (limited to 'neovim')
-rw-r--r-- | neovim/.config/nvim/lua/config/colourscheme.lua | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/lazy.lua | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/lualine.lua | 9 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/plugins/lualine.lua | 5 |
4 files changed, 8 insertions, 10 deletions
diff --git a/neovim/.config/nvim/lua/config/colourscheme.lua b/neovim/.config/nvim/lua/config/colourscheme.lua index 109c49e..6450d46 100644 --- a/neovim/.config/nvim/lua/config/colourscheme.lua +++ b/neovim/.config/nvim/lua/config/colourscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "melange" +local colorscheme = "nord" 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 c453a45..fd90ac4 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 = { "melange" }, missing = true }, + install = { colorscheme = { "nord" }, missing = true }, -- automatically check for plugin updates checker = { enabled = true, notify = false }, }) diff --git a/neovim/.config/nvim/lua/config/lualine.lua b/neovim/.config/nvim/lua/config/lualine.lua index a95cd73..5155bda 100644 --- a/neovim/.config/nvim/lua/config/lualine.lua +++ b/neovim/.config/nvim/lua/config/lualine.lua @@ -39,14 +39,7 @@ local config = { -- Disable sections and component separators component_separators = '', section_separators = '', - --theme = { - ---- We are going to use lualine_c an lualine_x as left and - ---- right section. Both are highlighted by c theme . So we - ---- are just setting default looks o statusline - --normal = { c = { fg = colors.fg, bg = colors.bg } }, - --inactive = { c = { fg = colors.fg, bg = colors.bg } }, - --}, - theme = 'melange', + theme = 'nord', }, sections = { -- these are to remove the defaults diff --git a/neovim/.config/nvim/lua/plugins/lualine.lua b/neovim/.config/nvim/lua/plugins/lualine.lua index dfd03d4..5f538d1 100644 --- a/neovim/.config/nvim/lua/plugins/lualine.lua +++ b/neovim/.config/nvim/lua/plugins/lualine.lua @@ -30,6 +30,11 @@ return { lazy = false, }, { + 'shaunsingh/nord.nvim', + priority = 1000, + lazy = false, + }, + { 'navarasu/onedark.nvim', lazy = false, priority = 1000, |