diff --git a/lua/plugins.lua b/lua/plugins.lua index bac2138..ed3cfcc 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -36,6 +36,13 @@ return { end, }, + { + 'numToStr/Comment.nvim', + config = function() + require('Comment').setup() + end + }, + { 'mrshmllow/document-color.nvim', config = function() @@ -111,6 +118,8 @@ return { -- file explorer { 'kyazdani42/nvim-tree.lua', + tag = 'nightly', + dependencies = { 'kyazdani42/nvim-web-devicons' }, config = function() require('nvim-tree').setup { sort_by = "case_sensitive", @@ -125,6 +134,9 @@ return { renderer = { group_empty = true, }, + filters = { + dotfiles = true, + }, } end }, @@ -260,6 +272,7 @@ return { -- colors { 'AlphaTechnolog/pywal.nvim', + priority = 1000, name = 'pywal', config = function() local pywal = require('pywal') @@ -270,7 +283,7 @@ return { -- better statusbar { 'hoob3rt/lualine.nvim', - dependencies = { { 'kyazdani42/nvim-web-devicons', lazy = true }, 'pywal' }, + dependencies = { { 'kyazdani42/nvim-web-devicons', lazy = true } }, config = function() require('lualine').setup({ options = { @@ -283,7 +296,7 @@ return { -- better tabs { 'kdheepak/tabline.nvim', - dependencies = { { 'kyazdani42/nvim-web-devicons', lazy = true }, 'pywal' }, + dependencies = { { 'kyazdani42/nvim-web-devicons', lazy = true } }, config = function() require('tabline').setup({ options = { theme = 'pywal-nvim' } }) end,