Disable neotree, switch to oil

This commit is contained in:
Evie Litherland-Smith 2023-05-18 14:29:10 +01:00
parent d7c4833432
commit 1b50d9757f
3 changed files with 27 additions and 1 deletions

View file

@ -16,7 +16,7 @@ return {
dashboard.section.buttons.val = {
dashboard.button("f", "" .. " Find file", "<cmd>Telescope find_files <CR>"),
dashboard.button("r", "" .. " Recent files", "<cmd>Telescope oldfiles <CR>"),
dashboard.button("n", "󱏒 " .. " Neotree", "<cmd>Neotree left <CR>"),
dashboard.button("n", "󱏒 " .. " Oil file browser", "<cmd>Oil <CR>"),
dashboard.button("g", "󰊢 " .. " Git status", "<cmd>Neogit <CR>"),
dashboard.button("c", "" .. " Config", "<cmd>e $MYVIMRC <CR>"),
dashboard.button("l", "󰒲 " .. " Lazy", "<cmd>Lazy<CR>"),

View file

@ -1,5 +1,6 @@
return {
"nvim-neo-tree/neo-tree.nvim",
enabled = false,
branch = "v2.x",
dependencies = {
"nvim-lua/plenary.nvim",

25
lua/plugins/oil.lua Normal file
View file

@ -0,0 +1,25 @@
return {
"stevearc/oil.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
cmd = "Oil",
init = function()
vim.keymap.set("n", "<leader>o", "<cmd>Oil<cr>")
if vim.fn.argc() == 1 then
local stat = vim.loop.fs_stat(vim.fn.argv(0))
if stat and stat.type == "directory" then require "oil" end
end
end,
config = true,
opts = {
float = {
-- Padding around the floating window
padding = 2,
max_width = 0,
max_height = 0,
border = "rounded",
win_options = {
winblend = 10,
},
},
},
}