mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 16:52:12 +02:00
never add trailing slashes for folders
This commit is contained in:
@@ -113,12 +113,17 @@ return {
|
|||||||
reload_on_bufenter = true,
|
reload_on_bufenter = true,
|
||||||
-- Allows using vim.ui.select for various operation instead of the defaut implementation
|
-- Allows using vim.ui.select for various operation instead of the defaut implementation
|
||||||
select_prompts = true,
|
select_prompts = true,
|
||||||
|
view = {
|
||||||
-- dynamically get the width of the tree
|
-- dynamically get the width of the tree
|
||||||
width = get_width,
|
width = get_width,
|
||||||
-- Always open the tree on the left side of the screen
|
-- Always open the tree on the left side of the screen
|
||||||
side = "left",
|
side = "left",
|
||||||
-- Never display the number line for the tree
|
-- Never display the number line for the tree
|
||||||
number = false,
|
number = false,
|
||||||
|
},
|
||||||
|
renderer = {
|
||||||
|
-- Never add trailing slashes for folders name
|
||||||
|
add_trailing = false,
|
||||||
})
|
})
|
||||||
|
|
||||||
local whichKey = require("which-key")
|
local whichKey = require("which-key")
|
||||||
|
|||||||
Reference in New Issue
Block a user