update some options

This commit is contained in:
Chris 2021-03-15 22:13:41 -04:00
parent f7f7c45ad9
commit dceb7aa0ff
2 changed files with 8 additions and 5 deletions

View file

@ -14,15 +14,15 @@ vim.o.termguicolors=true
vim.o.splitright=true --Vertical splits will automatically be to the right
vim.o.t_Co="256" --Support 256 colors
vim.o.conceallevel=0 --So that I can see `` in markdown files
vim.o.tabstop=2 --Insert 2 spaces for a tab
vim.o.shiftwidth=2 --Change the number of space characters inserted for indentation
vim.bo.tabstop=2 --Insert 2 spaces for a tab
vim.bo.shiftwidth=2 --Change the number of space characters inserted for indentation
vim.o.smarttab=true --Makes tabbing smarter will realize you have 2 vs 4
vim.o.expandtab=true --Converts tabs to spaces
vim.o.smartindent=true --Makes indenting smart
vim.bo.expandtab=true --Converts tabs to spaces
vim.bo.smartindent=true --Makes indenting smart
vim.o.autoindent=true --Good auto indent
vim.o.laststatus=2 --Always display the status line
vim.wo.number = true
vim.o.cursorline=true --Enable highlighting of the current line
vim.wo.cursorline=true --Enable highlighting of the current line
vim.o.background="dark" --tell vim what the background color looks like
vim.o.showtabline=2 --Always show tabs
vim.o.showmode=false --We don't need to see things like -- INSERT -- anymore

View file

@ -29,3 +29,6 @@ define_augroups(
},
}
)
-- Add this to lightbulb, java makes this annoying tho
-- autocmd CursorHold,CursorHoldI * lua require'nvim-lightbulb'.update_lightbulb()