some changes

This commit is contained in:
pika 2024-08-25 14:19:17 +02:00
parent 2fba1f0beb
commit 8977f26061
2 changed files with 2 additions and 4 deletions

View file

@ -100,9 +100,6 @@ map("n", "<leader>R", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]])
-- ─< LoremIpsum generator >────────────────────────────────────────────────────────────
map("n", "<leader>L", ":LoremIpsum ")
map("n", "cd", ":CdProject<CR>", { noremap = true, silent = true, desc = "[c]d into a predefined project" })
map("n", "<leader>cd", ":CdProjectManualAdd<CR>", { noremap = true, silent = true, desc = "Add new projects to [cd]" })
-- window management
map("n", "<leader>sv", "<C-w>v", { desc = "Split window vertically" }) -- split window vertically
map("n", "<leader>sh", "<C-w>s", { desc = "Split window horizontally" }) -- split window horizontally

View file

@ -4,7 +4,6 @@ return {
version = "*",
opts = {
options = {
underline_indicator = true,
diagnostics = "nvim_lsp",
diagnostics_update_on_event = true, -- use nvim's diagnostic handler
diagnostics_indicator = function(count, level)
@ -12,12 +11,14 @@ return {
return " " .. icon .. count
end,
offsets = { { filetype = "neo-tree", text = "File Explorer", highlight = "Directory" } },
-- ─< style >───────────────────────────────────────────────────────────────────────────
indicator = {
icon = "", -- this should be omitted if indicator style is not 'icon'
style = "icon",
},
move_wraps_at_ends = true, -- whether or not the move command "wraps" at the first or last position
separator_style = "slope",
-- ─< icons >───────────────────────────────────────────────────────────────────────────
modified_icon = "󱞇",
left_trunc_marker = "󰬩",
right_trunc_marker = "󰬫",