summaryrefslogtreecommitdiffstats
path: root/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/interface.lua8
-rw-r--r--lua/plugins/treesitter.lua4
2 files changed, 10 insertions, 2 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua
index 42d0108..3226cb0 100644
--- a/lua/plugins/interface.lua
+++ b/lua/plugins/interface.lua
@@ -3,6 +3,14 @@ return {
'nvim-tree/nvim-web-devicons',
},
{
+ 'mcauley-penney/visual-whitespace.nvim',
+ event = {
+ 'BufReadPre',
+ 'BufNewFile'
+ },
+ config = true
+ },
+ {
'nvim-lualine/lualine.nvim',
event = 'VeryLazy',
opts = {
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua
index fa64a8d..845ba05 100644
--- a/lua/plugins/treesitter.lua
+++ b/lua/plugins/treesitter.lua
@@ -11,7 +11,7 @@ return {
ignore_install = { 'latex' },
highlight = {
enable = true,
- additional_vim_regex_highlighting = false,
+ additional_vim_regex_highlighting = { 'latex' },
},
indent = { enable = true, disable = { 'python' } },
ensure_installed = {
@@ -26,7 +26,7 @@ return {
},
},
config = function(_, opts)
- require("nvim-treesitter.configs").setup(opts)
+ require('nvim-treesitter.configs').setup(opts)
end,
},
{