diff --git a/init.lua b/init.lua index 6d94644..e9a2926 100644 --- a/init.lua +++ b/init.lua @@ -2,6 +2,8 @@ require 'plugins' if vim.g.neovide then require 'neovide' +else + vim.opt.termguicolors = true end vim.opt.number = true diff --git a/lazy-lock.json b/lazy-lock.json index a875f04..f79915a 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -14,6 +14,7 @@ "diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" }, "direnv.vim": { "branch": "master", "commit": "ab2a7e08dd630060cd81d7946739ac7442a4f269" }, "dressing.nvim": { "branch": "master", "commit": "c5775a888adbc50652cb370073fcfec963eca93e" }, + "everforest": { "branch": "master", "commit": "93b89630861a4c8a1be07bc54f6d53487acb2e57" }, "friendly-snippets": { "branch": "main", "commit": "00ebcaa159e817150bd83bfe2d51fa3b3377d5c4" }, "gitsigns.nvim": { "branch": "main", "commit": "1ef74b546732f185d0f806860fa5404df7614f28" }, "lazy.nvim": { "branch": "main", "commit": "48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d" }, diff --git a/lua/plugins.lua b/lua/plugins.lua index eea78ed..f4e366d 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -20,7 +20,13 @@ return { { 'rose-pine/neovim', name = 'rose-pine', - config = function() vim.cmd [[colorscheme rose-pine-moon]] end + }, + { + 'sainnhe/everforest', + init = function() + vim.g.everforest_dim_inactive_windows = 1 + end, + config = function() vim.cmd [[colorscheme everforest]] end }, { 'L3MON4D3/LuaSnip', @@ -133,7 +139,14 @@ return { function() require('which-key').show({ global = false }) end, - desc = 'Buffer Local Keymaps (which-key)', + desc = 'Buffer Local Keymaps', + }, + { + '', + function() + require('which-key').show({ global = true }) + end, + desc = 'All Keymaps', }, }, config = function(_, opts) @@ -147,9 +160,7 @@ return { { 'nvim-lualine/lualine.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' }, - config = function() - require 'lualine'.setup() - end + opts = {} }, { 'akinsho/bufferline.nvim',