some changes
This commit is contained in:
parent
2fba1f0beb
commit
8977f26061
2 changed files with 2 additions and 4 deletions
|
@ -100,9 +100,6 @@ map("n", "<leader>R", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]])
|
||||||
-- ─< LoremIpsum generator >────────────────────────────────────────────────────────────
|
-- ─< LoremIpsum generator >────────────────────────────────────────────────────────────
|
||||||
map("n", "<leader>L", ":LoremIpsum ")
|
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
|
-- window management
|
||||||
map("n", "<leader>sv", "<C-w>v", { desc = "Split window vertically" }) -- split window vertically
|
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
|
map("n", "<leader>sh", "<C-w>s", { desc = "Split window horizontally" }) -- split window horizontally
|
||||||
|
|
|
@ -4,7 +4,6 @@ return {
|
||||||
version = "*",
|
version = "*",
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
underline_indicator = true,
|
|
||||||
diagnostics = "nvim_lsp",
|
diagnostics = "nvim_lsp",
|
||||||
diagnostics_update_on_event = true, -- use nvim's diagnostic handler
|
diagnostics_update_on_event = true, -- use nvim's diagnostic handler
|
||||||
diagnostics_indicator = function(count, level)
|
diagnostics_indicator = function(count, level)
|
||||||
|
@ -12,12 +11,14 @@ return {
|
||||||
return " " .. icon .. count
|
return " " .. icon .. count
|
||||||
end,
|
end,
|
||||||
offsets = { { filetype = "neo-tree", text = "File Explorer", highlight = "Directory" } },
|
offsets = { { filetype = "neo-tree", text = "File Explorer", highlight = "Directory" } },
|
||||||
|
-- ─< style >───────────────────────────────────────────────────────────────────────────
|
||||||
indicator = {
|
indicator = {
|
||||||
icon = "▎", -- this should be omitted if indicator style is not 'icon'
|
icon = "▎", -- this should be omitted if indicator style is not 'icon'
|
||||||
style = "icon",
|
style = "icon",
|
||||||
},
|
},
|
||||||
move_wraps_at_ends = true, -- whether or not the move command "wraps" at the first or last position
|
move_wraps_at_ends = true, -- whether or not the move command "wraps" at the first or last position
|
||||||
separator_style = "slope",
|
separator_style = "slope",
|
||||||
|
-- ─< icons >───────────────────────────────────────────────────────────────────────────
|
||||||
modified_icon = "",
|
modified_icon = "",
|
||||||
left_trunc_marker = "",
|
left_trunc_marker = "",
|
||||||
right_trunc_marker = "",
|
right_trunc_marker = "",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue