diff options
-rw-r--r-- | ghostty/Library/Application Support/com.mitchellh.ghostty/config | 3 | ||||
-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 |
5 files changed, 10 insertions, 11 deletions
diff --git a/ghostty/Library/Application Support/com.mitchellh.ghostty/config b/ghostty/Library/Application Support/com.mitchellh.ghostty/config index a39835f..3a0a70b 100644 --- a/ghostty/Library/Application Support/com.mitchellh.ghostty/config +++ b/ghostty/Library/Application Support/com.mitchellh.ghostty/config @@ -42,9 +42,10 @@ font-size = 13 # # which is explained in the docs for that config option. # # Just for example: # resize-overlay-duration = 4s 200ms -theme = light:melange_light,dark:melange_dark +theme = light:nord-light,dark:nord macos-titlebar-style = native shell-integration-features = title,sudo,cursor font-thicken = true font-thicken-strength = 0 confirm-close-surface = false +macos-option-as-alt = left 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, |