This commit is contained in:
abs3nt 2023-03-02 17:51:00 -08:00
parent 83020274e0
commit 1d9a00718f

View File

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