This commit is contained in:
jimrothstein 2023-09-02 19:14:39 -07:00
parent 915475b48e
commit e06872cf5f
1 changed files with 15 additions and 3 deletions

View File

@ -46,6 +46,15 @@ vim.g.maplocalleader = ' '
-- for now turn on LIGHT
vim.cmd 'set background=light'
----------------
-- experimnetal
----------------
-- FAILS
-- 2 windows? change status line for non-current(NC)
vim.cmd [[
highlight StatusLineNC cterm=bold ctermfg=white ctermbg=darkgray
]]
-- Install package manager
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
@ -178,6 +187,9 @@ require('lazy').setup({
},
},
-- bufferline (becuase? )
{ 'akinsho/bufferline.nvim', version = '*', dependencies = 'nvim-tree/nvim-web-devicons' },
{
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
@ -527,13 +539,13 @@ mason_lspconfig.setup_handlers {
-- fix for lua_ls 'vim' & global
-- this line replaced:
-- settings = servers[server_name],
-- settings = servers[server_name],
-- but does it break other lsp servers??
--
settings = {
Lua = {
diagnostics = { globals = {'vim'} }
},
diagnostics = { globals = { 'vim' } },
},
},
filetypes = (servers[server_name] or {}).filetypes,
}