all repos

init.lua @ e7a1609

my nvim config
1 files changed, 4 insertions(+), 2 deletions(-)
refactor(oil): update keymaps, and hidden files
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-01-14 00:50:07 +0200
Parent: 329ec3b
M lua/plugins/navigation.lua

@@ -33,7 +33,7 @@ },

{ "stevearc/oil.nvim", - event = "VeryLazy"; + event = "VeryLazy", keys = { { "<leader>e", map("oil", "open") } }, opts = { columns = { "icon" },

@@ -51,11 +51,11 @@ ["<C-x>"] = "actions.select_split",

["<A-p>"] = "actions.preview", ["<C-r>"] = "actions.refresh", ["<C-c>"] = "actions.close", + ["<C-[>"] = "actions.close", ["-"] = "actions.parent", ["_"] = "actions.open_cwd", [","] = "actions.parent", - ["<"] = "actions.open_cwd", ["\\"] = "actions.cd", ["C-\\"] = "actions.tcd",

@@ -68,7 +68,9 @@ is_always_hidden = function(name, _)

if ({ [".git"] = {}, + [".bin"] = {}, [".vscode"] = {}, + [".docker"] = {}, ["dist"] = {}, ["node_modules"] = {}, ["__pycache__"] = {},