LunarVim/lua/lvim/core/lir.lua

115 lines
2.7 KiB
Lua
Raw Normal View History

2022-09-19 17:44:04 +02:00
local M = {}
M.config = function()
lvim.builtin.lir = {
active = true,
on_config_done = nil,
icon = "",
2022-09-19 17:44:04 +02:00
}
local status_ok, _ = pcall(require, "lir")
2022-09-19 17:44:04 +02:00
if not status_ok then
return
end
local actions = require "lir.actions"
local mark_actions = require "lir.mark.actions"
local clipboard_actions = require "lir.clipboard.actions"
2022-09-19 17:44:04 +02:00
lvim.builtin.lir = vim.tbl_extend("force", lvim.builtin.lir, {
2022-09-19 17:44:04 +02:00
show_hidden_files = false,
ignore = {}, -- { ".DS_Store" "node_modules" } etc.
2022-09-19 17:44:04 +02:00
devicons_enable = true,
mappings = {
["l"] = actions.edit,
["<CR>"] = actions.edit,
["<C-s>"] = actions.split,
["v"] = actions.vsplit,
["<C-t>"] = actions.tabedit,
["h"] = actions.up,
["q"] = actions.quit,
["A"] = actions.mkdir,
["a"] = actions.newfile,
["r"] = actions.rename,
["@"] = actions.cd,
["Y"] = actions.yank_path,
["i"] = actions.toggle_show_hidden,
["d"] = actions.delete,
["J"] = function()
mark_actions.toggle_mark()
vim.cmd "normal! j"
end,
["c"] = clipboard_actions.copy,
["x"] = clipboard_actions.cut,
["p"] = clipboard_actions.paste,
},
float = {
winblend = 0,
curdir_window = {
enable = false,
highlight_dirname = true,
},
-- You can define a function that returns a table to be passed as the third
-- argument of nvim_open_win().
2022-09-19 17:44:04 +02:00
win_opts = function()
local width = math.floor(vim.o.columns * 0.7)
local height = math.floor(vim.o.lines * 0.7)
return {
border = "rounded",
width = width,
height = height,
}
end,
},
hide_cursor = false,
on_init = function()
-- use visual mode
vim.api.nvim_buf_set_keymap(
0,
"x",
"J",
':<C-u>lua require"lir.mark.actions".toggle_mark("v")<CR>',
{ noremap = true, silent = true }
)
end,
})
2022-09-19 17:44:04 +02:00
end
function M.icon_setup()
local function get_hl_by_name(name)
local ret = vim.api.nvim_get_hl_by_name(name.group, true)
return string.format("#%06x", ret[name.property])
end
local found, icon_hl = pcall(get_hl_by_name, { group = "NvimTreeFolderIcon", property = "foreground" })
if not found then
icon_hl = "#42A5F5"
end
require("nvim-web-devicons").set_icon {
lir_folder_icon = {
icon = lvim.builtin.lir.icon,
color = icon_hl,
name = "LirFolderNode",
},
}
end
2022-09-19 17:44:04 +02:00
function M.setup()
local status_ok, lir = pcall(reload, "lir")
2022-09-19 17:44:04 +02:00
if not status_ok then
return
end
lir.setup(lvim.builtin.lir)
2022-09-19 17:44:04 +02:00
if lvim.builtin.lir.on_config_done then
lvim.builtin.lir.on_config_done(lir)
end
end
return M