yolo
This commit is contained in:
parent
340de2ccbe
commit
b9cd87bb35
3 changed files with 15 additions and 15 deletions
|
@ -62,7 +62,7 @@ vim.diagnostic.config({ float = { border = "single" } })
|
||||||
|
|
||||||
-- Setting up servers per language
|
-- Setting up servers per language
|
||||||
-- Default nvim-lsp setup: nil, clangd
|
-- 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
|
for _, serv in ipairs(servers) do
|
||||||
nvim_lsp[serv].setup{
|
nvim_lsp[serv].setup{
|
||||||
|
|
|
@ -4,7 +4,7 @@ vim.cmd([[set noshowmode]])
|
||||||
return require('lualine').setup {
|
return require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
theme = '16color',
|
theme = 'everforest',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
component_seaparators = '',
|
component_seaparators = '',
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,25 +62,25 @@ return require('packer').startup(function(use)
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- use {
|
|
||||||
-- 'sainnhe/everforest',
|
|
||||||
-- config = function()
|
|
||||||
-- vim.cmd([[
|
|
||||||
-- set termguicolors
|
|
||||||
-- let g:everforest_transparent_background = 2
|
|
||||||
-- colorscheme everforest
|
|
||||||
-- ]])
|
|
||||||
-- end,
|
|
||||||
-- }
|
|
||||||
use {
|
use {
|
||||||
'casonadams/walh',
|
'sainnhe/everforest',
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
set notermguicolors
|
set termguicolors
|
||||||
colorscheme walh-default
|
let g:everforest_transparent_background = 2
|
||||||
|
colorscheme everforest
|
||||||
]])
|
]])
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
-- use {
|
||||||
|
-- 'casonadams/walh',
|
||||||
|
-- config = function()
|
||||||
|
-- vim.cmd([[
|
||||||
|
-- set notermguicolors
|
||||||
|
-- colorscheme walh-one
|
||||||
|
-- ]])
|
||||||
|
-- end,
|
||||||
|
-- }
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'johnfrankmorgan/whitespace.nvim',
|
'johnfrankmorgan/whitespace.nvim',
|
||||||
|
|
Loading…
Add table
Reference in a new issue