diff --git a/.gitignore b/.gitignore index d699e1d6..ea93edad 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ tags test.sh .luarc.json nvim +lazy-lock.json diff --git a/init.lua b/init.lua index 42210306..34db4547 100644 --- a/init.lua +++ b/init.lua @@ -89,8 +89,7 @@ require('lazy').setup({ -- Useful status updates for LSP -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})` - { 'j-hui/fidget.nvim', opts = {} }, - -- { 'j-hui/fidget.nvim', tag = 'legacy', opts = {} }, + { 'j-hui/fidget.nvim', opts = {} }, -- Additional lua configuration, makes nvim stuff amazing! 'folke/neodev.nvim', @@ -256,10 +255,7 @@ require('lazy').setup({ -- Enable `lukas-reineke/indent-blankline.nvim` -- See `:help ibl` main = 'ibl', - opts = { - char = '┊', - show_trailing_blankline_indent = false, - }, + opts = {} }, -- "gc" to comment visual regions/lines @@ -833,4 +829,7 @@ vim.api.nvim_create_user_command( { nargs = 1 } ) +-- IBL config +require("ibl").setup() + -- vim: ts=2 sts=2 sw=2 et