From 4bfcaeb98229d3ec708f9e9d1608762e335caf86 Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Mon, 24 Feb 2025 13:38:22 +0100 Subject: [PATCH] use terminal colors --- nvim.lua/.config/nvim/lua/lualine_setup.lua | 2 +- nvim.lua/.config/nvim/lua/plugins.lua | 19 ++++++++++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/nvim.lua/.config/nvim/lua/lualine_setup.lua b/nvim.lua/.config/nvim/lua/lualine_setup.lua index 8ceba41..9bea4c0 100644 --- a/nvim.lua/.config/nvim/lua/lualine_setup.lua +++ b/nvim.lua/.config/nvim/lua/lualine_setup.lua @@ -4,7 +4,7 @@ vim.cmd([[set noshowmode]]) return require('lualine').setup { options = { icons_enabled = true, - theme = 'everforest', + theme = '16color', section_separators = '', component_seaparators = '', } diff --git a/nvim.lua/.config/nvim/lua/plugins.lua b/nvim.lua/.config/nvim/lua/plugins.lua index 6d2cce3..dde90a9 100644 --- a/nvim.lua/.config/nvim/lua/plugins.lua +++ b/nvim.lua/.config/nvim/lua/plugins.lua @@ -62,13 +62,22 @@ return require('packer').startup(function(use) end, } + -- use { + -- 'sainnhe/everforest', + -- config = function() + -- vim.cmd([[ + -- set termguicolors + -- let g:everforest_transparent_background = 2 + -- colorscheme everforest + -- ]]) + -- end, + -- } use { - 'sainnhe/everforest', + 'casonadams/walh', config = function() vim.cmd([[ - set termguicolors - let g:everforest_transparent_background = 2 - colorscheme everforest + set notermguicolors + colorscheme walh-default ]]) end, } @@ -127,7 +136,7 @@ return require('packer').startup(function(use) vim.keymap.set('n', 'fg', builtin.live_grep, { desc = 'Telescope live grep' }) vim.keymap.set('n', 'ff', builtin.find_files, { desc = 'Telescope find files' }) vim.keymap.set('n', 'fG', builtin.git_files, { desc = 'Telescope find git ls-files' }) - vim.keymap.set('n', 'fb', builtin.buffers, { desc = 'Telescope buffers' }) + vim.keymap.set('n', 'b', builtin.buffers, { desc = 'Telescope buffers' }) vim.keymap.set('n', 'fh', builtin.help_tags, { desc = 'Telescope help tags' }) end, }