initialize oil plugin

This commit is contained in:
Nick Burt 2023-12-14 22:05:27 -06:00
parent c033a705ce
commit c1610371bb
3 changed files with 7 additions and 0 deletions

View File

@ -552,6 +552,10 @@ cmp.setup {
{ name = 'path' },
},
}
-- Configure Oil
require('oil').setup()
vim.keymap.set('n', '<leader>-', '<CMD>Oil --float<CR>', { desc = 'Open current directory' })
-- Configure Theme
require('catppuccin').setup({
flavour = 'macchiato',

View File

@ -18,6 +18,7 @@
"nvim-lspconfig": { "branch": "master", "commit": "84f2dd42efffa20d505ac44c78568d778ca7e0a1" },
"nvim-treesitter": { "branch": "master", "commit": "ab818bf5a2ee21515ade9afcf428e98056b6197b" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a" },
"oil.nvim": { "branch": "master", "commit": "24027ed8d7f3ee5c38cfd713915e2e16d89e79b3" },
"onedark.nvim": { "branch": "master", "commit": "c5476a091b0f1b4e853db91c91ff941f848a1cdd" },
"plenary.nvim": { "branch": "master", "commit": "55d9fe89e33efd26f532ef20223e5f9430c8b0c0" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },

View File

@ -1,4 +1,6 @@
return {
-- File Browser
{ 'stevearc/oil.nvim' },
-- Theme
{ 'catppuccin/nvim', name='catppuccin', priority = 1000 },
}