Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/cybu.lua

25 lines
738 B
Lua
Raw Normal View History

2022-07-17 23:36:31 +00:00
local ok, cybu = pcall(require, "cybu")
if not ok then
return
end
cybu.setup({
display_time = 1750, -- time the cybu window is displayed
style = {
path = "relative", -- absolute, relative, tail (filename only)
border = "rounded", -- single, double, rounded, none
separator = " ", -- string used as separator
prefix = "", -- string used as prefix for truncated paths
padding = 1, -- left & right padding in number of spaces
hide_buffer_id = true,
devicons = {
enabled = true, -- enable or disable web dev icons
colored = true, -- enable color for web dev icons
},
},
})
vim.keymap.set("n", "<s-tab>", "<Plug>(CybuPrev)")
vim.keymap.set("n", "<tab>", "<Plug>(CybuNext)")
vim.keymap.set("n", "<c-i>", "<c-i>")