summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/oil.lua
blob: 3daab4375e62349a31a43efd3bddfbf84c25be59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
    "stevearc/oil.nvim",
    dependencies = { "nvim-tree/nvim-web-devicons" },
    keys = {
        { "g-", function() require("oil").open() end, desc = "Open Oil fil browser" },
    },
    lazy = false,
    opts = {
        keymaps = {
            -- Disabling because I want Telescope to use this
            ["<C-p>"] = false
        }
    }
}