feat: adjust sizing of file manager dynamically
This commit is contained in:
@@ -8,12 +8,16 @@ return {
|
|||||||
'NvimTreeRefresh',
|
'NvimTreeRefresh',
|
||||||
},
|
},
|
||||||
init = function()
|
init = function()
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.disable_netrw = false
|
||||||
|
vim.g.loaded_netrwPlugin = true
|
||||||
end,
|
end,
|
||||||
opts = {
|
opts = {
|
||||||
respect_buf_cwd = false,
|
respect_buf_cwd = false,
|
||||||
view = {
|
view = {
|
||||||
width = 35,
|
width = {
|
||||||
|
min = 25,
|
||||||
|
max = 45,
|
||||||
|
},
|
||||||
relativenumber = true,
|
relativenumber = true,
|
||||||
signcolumn = 'yes',
|
signcolumn = 'yes',
|
||||||
},
|
},
|
||||||
@@ -80,7 +84,7 @@ return {
|
|||||||
enable = true,
|
enable = true,
|
||||||
git_ignored = true,
|
git_ignored = true,
|
||||||
dotfiles = false,
|
dotfiles = false,
|
||||||
custom = { '.DS_Store' },
|
-- custom = { '.DS_Store' },
|
||||||
},
|
},
|
||||||
git = {
|
git = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user