update oil
This commit is contained in:
parent
3fb9c805e2
commit
972165d32b
2
init.lua
2
init.lua
@ -15,7 +15,7 @@ vim.api.nvim_create_autocmd('User', {
|
|||||||
local lazygit = Terminal:new({
|
local lazygit = Terminal:new({
|
||||||
cmd = "lazygit",
|
cmd = "lazygit",
|
||||||
dir = "git_dir",
|
dir = "git_dir",
|
||||||
direction = "float",
|
direction = "tab",
|
||||||
float_opts = {
|
float_opts = {
|
||||||
border = "none",
|
border = "none",
|
||||||
},
|
},
|
||||||
|
@ -88,6 +88,13 @@ vim.api.nvim_create_autocmd("BufReadPost", {
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||||
|
pattern = ".gitlab*",
|
||||||
|
callback = function()
|
||||||
|
vim.bo.filetype = "yaml.gitlab"
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
vim.cmd [[
|
vim.cmd [[
|
||||||
augroup change_cursor
|
augroup change_cursor
|
||||||
au!
|
au!
|
||||||
|
@ -29,7 +29,17 @@ return {
|
|||||||
},
|
},
|
||||||
keymaps = {
|
keymaps = {
|
||||||
['g?'] = 'actions.show_help',
|
['g?'] = 'actions.show_help',
|
||||||
['<CR>'] = 'actions.select',
|
-- ['<CR>'] = 'actions.select',
|
||||||
|
["<CR>"] = function()
|
||||||
|
require("oil").select(nil, function(err)
|
||||||
|
if not err then
|
||||||
|
local curdir = require("oil").get_current_dir()
|
||||||
|
if curdir then
|
||||||
|
vim.cmd.lcd(curdir)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end,
|
||||||
['<C-s>'] = 'actions.select_vsplit',
|
['<C-s>'] = 'actions.select_vsplit',
|
||||||
['<C-h>'] = 'actions.select_split',
|
['<C-h>'] = 'actions.select_split',
|
||||||
['<C-p>'] = 'actions.preview',
|
['<C-p>'] = 'actions.preview',
|
||||||
@ -38,7 +48,11 @@ return {
|
|||||||
['q'] = 'actions.close',
|
['q'] = 'actions.close',
|
||||||
['<C-l>'] = 'actions.refresh',
|
['<C-l>'] = 'actions.refresh',
|
||||||
['-'] = 'actions.parent',
|
['-'] = 'actions.parent',
|
||||||
['l'] = 'actions.parent',
|
-- ['l'] = 'actions.parent',
|
||||||
|
["l"] = function()
|
||||||
|
require("oil.actions").parent.callback()
|
||||||
|
vim.cmd.lcd(require("oil").get_current_dir())
|
||||||
|
end,
|
||||||
['_'] = 'actions.open_cwd',
|
['_'] = 'actions.open_cwd',
|
||||||
['`'] = 'actions.cd',
|
['`'] = 'actions.cd',
|
||||||
['~'] = 'actions.tcd',
|
['~'] = 'actions.tcd',
|
||||||
|
Loading…
Reference in New Issue
Block a user