This commit is contained in:
Grisha Shipunov 2025-03-09 02:47:58 +01:00
parent 340de2ccbe
commit b9cd87bb35
3 changed files with 15 additions and 15 deletions

View file

@ -62,7 +62,7 @@ vim.diagnostic.config({ float = { border = "single" } })
-- Setting up servers per language
-- Default nvim-lsp setup: nil, clangd
local servers = { 'nil_ls', 'clangd', 'texlab' }
local servers = { 'nil_ls', 'clangd', 'texlab', 'zls' }
for _, serv in ipairs(servers) do
nvim_lsp[serv].setup{

View file

@ -4,7 +4,7 @@ vim.cmd([[set noshowmode]])
return require('lualine').setup {
options = {
icons_enabled = true,
theme = '16color',
theme = 'everforest',
section_separators = '',
component_seaparators = '',
}

View file

@ -62,25 +62,25 @@ 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 {
'casonadams/walh',
'sainnhe/everforest',
config = function()
vim.cmd([[
set notermguicolors
colorscheme walh-default
set termguicolors
let g:everforest_transparent_background = 2
colorscheme everforest
]])
end,
}
-- use {
-- 'casonadams/walh',
-- config = function()
-- vim.cmd([[
-- set notermguicolors
-- colorscheme walh-one
-- ]])
-- end,
-- }
use {
'johnfrankmorgan/whitespace.nvim',