switch to lf
This commit is contained in:
parent
5938d09e6c
commit
33fa3ad679
6 changed files with 43 additions and 133 deletions
|
@ -48,7 +48,7 @@ M.whichkey = {
|
||||||
n = {
|
n = {
|
||||||
["w"] = { "<cmd>w!<CR>", "Save" },
|
["w"] = { "<cmd>w!<CR>", "Save" },
|
||||||
["q"] = { function() require("funcs").buf_kill() end, "Close" },
|
["q"] = { function() require("funcs").buf_kill() end, "Close" },
|
||||||
-- TODO: filepicker ["f"] = {},
|
["f"] = { function() require("lf").start("~") end, "File Picker" },
|
||||||
["h"] = { "<cmd>nohlsearch<CR>", "Clear Highlights" },
|
["h"] = { "<cmd>nohlsearch<CR>", "Clear Highlights" },
|
||||||
u = {
|
u = {
|
||||||
name = "Utility",
|
name = "Utility",
|
||||||
|
@ -181,9 +181,9 @@ M.whichkey = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
nvimtree = {
|
lf = {
|
||||||
n = {
|
n = {
|
||||||
["e"] = { "<cmd>NvimTreeToggle<CR>", "Toggle Filetree" },
|
["e"] = { function() require('lf').start() end, "File Picker" },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
alpha = {
|
alpha = {
|
||||||
|
|
|
@ -10,14 +10,14 @@ end
|
||||||
local icons = require 'config.iconlist'
|
local icons = require 'config.iconlist'
|
||||||
|
|
||||||
local config = {
|
local config = {
|
||||||
highlights = {
|
-- highlights = {
|
||||||
background = {
|
-- background = {
|
||||||
italic = true,
|
-- italic = true,
|
||||||
},
|
-- },
|
||||||
buffer_selected = {
|
-- buffer_selected = {
|
||||||
bold = true,
|
-- bold = true,
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
options = {
|
options = {
|
||||||
mode = "buffers", -- set to "tabs" to only show tabpages instead
|
mode = "buffers", -- set to "tabs" to only show tabpages instead
|
||||||
numbers = "none", -- can be "none" | "ordinal" | "buffer_id" | "both" | function
|
numbers = "none", -- can be "none" | "ordinal" | "buffer_id" | "both" | function
|
||||||
|
@ -50,9 +50,6 @@ local config = {
|
||||||
tab_size = 18,
|
tab_size = 18,
|
||||||
diagnostics = "nvim_lsp",
|
diagnostics = "nvim_lsp",
|
||||||
diagnostics_update_in_insert = false,
|
diagnostics_update_in_insert = false,
|
||||||
diagnostics_indicator = diagnostics_indicator,
|
|
||||||
-- NOTE: this will be called a lot so don't do any heavy processing here
|
|
||||||
custom_filter = custom_filter,
|
|
||||||
offsets = {
|
offsets = {
|
||||||
{
|
{
|
||||||
filetype = "undotree",
|
filetype = "undotree",
|
||||||
|
@ -104,37 +101,4 @@ local config = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
local function diagnostics_indicator(num, _, diagnostics, _)
|
|
||||||
local result = {}
|
|
||||||
local symbols = {
|
|
||||||
error = icons.diagnostics.Error,
|
|
||||||
warning = icons.diagnostics.Warning,
|
|
||||||
info = icons.diagnostics.Info,
|
|
||||||
}
|
|
||||||
for name, count in pairs(diagnostics) do
|
|
||||||
if symbols[name] and count > 0 then
|
|
||||||
table.insert(result, symbols[name] .. " " .. count)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
result = table.concat(result, " ")
|
|
||||||
return #result > 0 and result or ""
|
|
||||||
end
|
|
||||||
|
|
||||||
local function custom_filter(buf, buf_nums)
|
|
||||||
local logs = vim.tbl_filter(function(b)
|
|
||||||
return is_ft(b, "log")
|
|
||||||
end, buf_nums)
|
|
||||||
if vim.tbl_isempty(logs) then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
local tab_num = vim.fn.tabpagenr()
|
|
||||||
local last_tab = vim.fn.tabpagenr "$"
|
|
||||||
local is_log = is_ft(buf, "log")
|
|
||||||
if last_tab == 1 then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
-- only show log buffers in secondary tabs
|
|
||||||
return (tab_num == last_tab and is_log) or (tab_num ~= last_tab and not is_log)
|
|
||||||
end
|
|
||||||
|
|
||||||
bufferline.setup(config)
|
bufferline.setup(config)
|
||||||
|
|
9
.config/nvim/lua/plugins/config/lf.lua
Normal file
9
.config/nvim/lua/plugins/config/lf.lua
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
-- Defaults
|
||||||
|
require("lf").setup({
|
||||||
|
winblend = 0,
|
||||||
|
highlights = {
|
||||||
|
border = "Normal",
|
||||||
|
background = "Normal",
|
||||||
|
},
|
||||||
|
border = "rounded",
|
||||||
|
})
|
|
@ -1,68 +0,0 @@
|
||||||
local status_ok, nvim_tree = pcall(require, 'nvim-tree')
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local config_status_ok, nvim_tree_config = pcall(require, 'nvim-tree.config')
|
|
||||||
if not config_status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local tree_cb = nvim_tree_config.nvim_tree_callback
|
|
||||||
local icons = require('config.iconlist')
|
|
||||||
|
|
||||||
nvim_tree.setup {
|
|
||||||
update_focused_file = {
|
|
||||||
enable = true,
|
|
||||||
update_cwd = true,
|
|
||||||
},
|
|
||||||
renderer = {
|
|
||||||
root_folder_modifier = ":t",
|
|
||||||
icons = {
|
|
||||||
glyphs = {
|
|
||||||
default = icons.ui.File,
|
|
||||||
symlink = icons.ui.FileSymlink,
|
|
||||||
folder = {
|
|
||||||
arrow_open = icons.ui.ChevronShortDown,
|
|
||||||
arrow_closed = icons.ui.ChevronShortRight,
|
|
||||||
default = icons.ui.Folder,
|
|
||||||
open = icons.ui.FolderOpen,
|
|
||||||
empty = icons.ui.EmptyFolder,
|
|
||||||
empty_open = icons.ui.EmptyFolderOpen,
|
|
||||||
symlink = icons.ui.FolderSymlink,
|
|
||||||
symlink_open = icons.ui.FolderSymlink,
|
|
||||||
},
|
|
||||||
git = {
|
|
||||||
unstaged = icons.git.FileUnstaged,
|
|
||||||
staged = icons.git.FileStaged,
|
|
||||||
unmerged = icons.git.FileUnmerged,
|
|
||||||
renamed = icons.git.FileRenamed,
|
|
||||||
untracked = icons.git.FileUntracked,
|
|
||||||
deleted = icons.git.FileDeleted,
|
|
||||||
ignored = icons.git.FileIgnored,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
diagnostics = {
|
|
||||||
enable = true,
|
|
||||||
show_on_dirs = true,
|
|
||||||
icons = {
|
|
||||||
hint = icons.diagnostics.BoldHint,
|
|
||||||
info = icons.diagnostics.BoldInformation,
|
|
||||||
warning = icons.diagnostics.BoldWarning,
|
|
||||||
error = icons.diagnostics.BoldError,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
view = {
|
|
||||||
width = 30,
|
|
||||||
side = "left",
|
|
||||||
mappings = {
|
|
||||||
list = {
|
|
||||||
{ key = { "l", "<CR>", "o" }, cb = tree_cb "edit" },
|
|
||||||
{ key = "h", cb = tree_cb "close_node" },
|
|
||||||
{ key = "v", cb = tree_cb "vsplit" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -16,7 +16,12 @@ toggleterm.setup({
|
||||||
close_on_exit = true,
|
close_on_exit = true,
|
||||||
shell = vim.o.shell,
|
shell = vim.o.shell,
|
||||||
float_opts = {
|
float_opts = {
|
||||||
border = "curved",
|
winblend = 0,
|
||||||
|
highlights = {
|
||||||
|
border = "Normal",
|
||||||
|
background = "Normal",
|
||||||
|
},
|
||||||
|
border = "rounded",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -48,9 +48,9 @@ local plugins = {
|
||||||
|
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("bufferline.nvim")
|
require('funcs').on_file_open("bufferline.nvim")
|
||||||
|
require('funcs').map("bufferline")
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("bufferline")
|
|
||||||
require('plugins.config.bufferline')
|
require('plugins.config.bufferline')
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -71,9 +71,9 @@ local plugins = {
|
||||||
after = "nvim-treesitter",
|
after = "nvim-treesitter",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("indent-blankline.nvim")
|
require('funcs').on_file_open("indent-blankline.nvim")
|
||||||
|
require('funcs').map("blankline")
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("blankline")
|
|
||||||
require('plugins.config.indent-blankline')
|
require('plugins.config.indent-blankline')
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -88,9 +88,9 @@ local plugins = {
|
||||||
{ "RRethy/vim-illuminate",
|
{ "RRethy/vim-illuminate",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("vim-illuminate")
|
require('funcs').on_file_open("vim-illuminate")
|
||||||
|
require('funcs').map("illuminate")
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("illuminate")
|
|
||||||
require('plugins.config.illuminate')
|
require('plugins.config.illuminate')
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -133,9 +133,9 @@ local plugins = {
|
||||||
after = "mason-lspconfig.nvim",
|
after = "mason-lspconfig.nvim",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("nvim-lspconfig")
|
require('funcs').on_file_open("nvim-lspconfig")
|
||||||
|
require('funcs').map("lspconfig")
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("lspconfig")
|
|
||||||
require('plugins.config.lspconfig')
|
require('plugins.config.lspconfig')
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -156,9 +156,9 @@ local plugins = {
|
||||||
{ "mfussenegger/nvim-dap",
|
{ "mfussenegger/nvim-dap",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("nvim-dap")
|
require('funcs').on_file_open("nvim-dap")
|
||||||
|
require('funcs').map("dap")
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("dap")
|
|
||||||
require('plugins.config.dap')
|
require('plugins.config.dap')
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -195,28 +195,28 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "numToStr/Comment.nvim",
|
{ "numToStr/Comment.nvim",
|
||||||
setup = function()
|
|
||||||
require('funcs').on_file_open("Comment.nvim")
|
|
||||||
end,
|
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("comment")
|
|
||||||
require('plugins.config.comment')
|
require('plugins.config.comment')
|
||||||
end,
|
end,
|
||||||
},
|
setup = function()
|
||||||
{ "kyazdani42/nvim-tree.lua",
|
require('funcs').on_file_open("Comment.nvim")
|
||||||
ft = "alpha",
|
require('funcs').map("comment")
|
||||||
cmd = { "NvimTreeToggle", "NvimTreeFocus" },
|
|
||||||
config = function()
|
|
||||||
require('funcs').map("nvimtree")
|
|
||||||
require('plugins.config.nvim-tree')
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{ "lmburns/lf.nvim",
|
||||||
|
config = function()
|
||||||
|
require('plugins.config.lf')
|
||||||
|
require('funcs').map("lf")
|
||||||
|
end
|
||||||
|
},
|
||||||
{ "nvim-telescope/telescope.nvim",
|
{ "nvim-telescope/telescope.nvim",
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
config = function()
|
config = function()
|
||||||
require('funcs').map("telescope")
|
|
||||||
require('plugins.config.telescope')
|
require('plugins.config.telescope')
|
||||||
end,
|
end,
|
||||||
|
setup = function()
|
||||||
|
require('funcs').map("telescope")
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
{ "ahmedkhalf/project.nvim",
|
{ "ahmedkhalf/project.nvim",
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
|
|
Loading…
Add table
Reference in a new issue