Start work on using oil.nvim for navigation

This commit is contained in:
Thomas Avé 2024-04-10 13:17:49 +02:00
parent 8ffca7f6b5
commit 972d2dee11
2 changed files with 12 additions and 2 deletions

View File

@ -1,10 +1,20 @@
local function store_select()
require("oil").select({}, function()
local f = io.open("/tmp/oil_dir", "w")
if f then
f:write(require("oil").get_current_dir())
f:close()
end
end)
end
return {
'stevearc/oil.nvim',
dependencies = { "nvim-tree/nvim-web-devicons" }, lazy = true,
opts = {
keymaps = {
["g?"] = "actions.show_help",
["<CR>"] = "actions.select",
["<CR>"] = store_select,
["<leader>v"] = "actions.select_vsplit",
["<leader>s"] = "actions.select_split",
["<leader>p"] = "actions.preview",
@ -16,7 +26,6 @@ return {
["~"] = "actions.tcd",
["g."] = "actions.toggle_hidden",
},
-- Set to false to disable all of the above keymaps
use_default_keymaps = false,
}
}

View File

@ -262,6 +262,7 @@ alias wget=wget --hsts-file="$XDG_DATA_HOME/wget-hsts"
alias xbindkeys="xbindkeys -f $XDG_CONFIG_HOME/xbindkeys/config"
alias python=python3
alias r=". ranger"
alias v="vim . && cd \"\$(cat /tmp/oil_dir)\""
alias cpr="rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1"
alias mvr="rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files"
alias rg="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"