Actualize nvim conf

This commit is contained in:
2026-05-26 10:18:50 +03:00
parent 8d3e15a733
commit c8f8a95f52
2 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ end
require('lualine').setup { require('lualine').setup {
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = 'edge', theme = 'everforest',
component_separators = { left = '|', right = '|' }, component_separators = { left = '|', right = '|' },
section_separators = {}, section_separators = {},
globalstatus = true, globalstatus = true,
+6 -5
View File
@@ -10,12 +10,13 @@ require('packer').startup(function(use)
-- Appearance -- Appearance
use { use {
'sainnhe/edge', 'sainnhe/everforest',
config = function() config = function()
vim.g.edge_transparent_background = 2 vim.g.everforest_transparent_background = 2
vim.g.edge_better_performance = 1 vim.g.everforest_better_performance = 1
vim.g.edge_enable_italic = false vim.g.everforest_enable_italic = false
vim.cmd.colorscheme 'edge' vim.g.everforest_background = 'hard'
vim.cmd.colorscheme 'everforest'
end, end,
} }
use('nvim-tree/nvim-web-devicons') use('nvim-tree/nvim-web-devicons')