mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 21:13:49 +00:00
oil.nvim relative path fix on open file
This commit is contained in:
parent
b138a01336
commit
cacb564101
@ -1,3 +1,13 @@
|
||||
-- Fix oil absolute path to relative path conversion
|
||||
vim.api.nvim_create_augroup('OilRelPathFix', {})
|
||||
vim.api.nvim_create_autocmd('BufLeave', {
|
||||
group = 'OilRelPathFix',
|
||||
pattern = 'oil:///*',
|
||||
callback = function()
|
||||
vim.cmd 'cd .'
|
||||
end,
|
||||
})
|
||||
|
||||
return {
|
||||
'stevearc/oil.nvim',
|
||||
opts = {},
|
||||
|
Loading…
Reference in New Issue
Block a user