Fixed errors

This commit is contained in:
Wil Simpson 2024-06-29 16:35:40 -04:00
parent 8d946c13e7
commit 9d965db75f
3 changed files with 112 additions and 10 deletions

View file

@ -159,10 +159,15 @@ require('lazy').setup({
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
opts = {
char = '',
show_trailing_blankline_indent = false,
},
main = 'ibl',
config = function()
require('ibl').setup {
indent = { char = "" },
whitespace = {
remove_blankline_trail = true,
},
}
end,
},
-- "gc" to comment visual regions/lines
@ -332,7 +337,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de
-- See `:help nvim-treesitter`
require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'help', 'vim', 'ruby', 'http',
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vim', 'ruby', 'http',
'css' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)