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 -- for now turn on LIGHT
vim.cmd 'set background=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 -- Install package manager
-- https://github.com/folke/lazy.nvim -- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info -- `: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 -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim', 'lukas-reineke/indent-blankline.nvim',
@ -527,12 +539,12 @@ mason_lspconfig.setup_handlers {
-- fix for lua_ls 'vim' & global -- fix for lua_ls 'vim' & global
-- this line replaced: -- this line replaced:
-- settings = servers[server_name], -- settings = servers[server_name],
-- but does it break other lsp servers?? -- but does it break other lsp servers??
-- --
settings = { settings = {
Lua = { Lua = {
diagnostics = { globals = {'vim'} } diagnostics = { globals = { 'vim' } },
}, },
}, },
filetypes = (servers[server_name] or {}).filetypes, filetypes = (servers[server_name] or {}).filetypes,