feat: change colorscheme

This commit is contained in:
Fey Naomi Schrewe 2024-09-09 20:16:21 +02:00
parent 41ab58e00f
commit 49a0080181
3 changed files with 19 additions and 5 deletions

View File

@ -2,6 +2,8 @@ require 'plugins'
if vim.g.neovide then
require 'neovide'
else
vim.opt.termguicolors = true
end
vim.opt.number = true

View File

@ -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" },

View File

@ -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',
},
{
'<leader><M-?>',
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',