aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins.lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-05-28 16:19:14 +0200
committerpml68 <tutorialmester@gmail.com>2024-05-28 16:19:32 +0200
commitffbab12f95793cdc29ab7a5eafd7932a7f325131 (patch)
tree08257739d2d2dba24b3a408336c7923b9e3a877a /lua/pml68/plugins.lua
parentfeat: remove UndoTree and fugitive.vim plugins (diff)
downloadnvim-ffbab12f95793cdc29ab7a5eafd7932a7f325131.tar.gz
feat: switch from netrw to oil.nvim
Diffstat (limited to 'lua/pml68/plugins.lua')
-rw-r--r--lua/pml68/plugins.lua21
1 files changed, 19 insertions, 2 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index aff3802..2eec022 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -1,5 +1,22 @@
local plugins = {
- --Colorizer
+ -- Oil.nvim
+ {
+ "stevearc/oil.nvim",
+ cmd = "Oil",
+ dependencies = { "nvim-tree/nvim-web-devicons" },
+ config = function()
+ require("oil").setup({
+ columns = { "icon" },
+ keymaps = {
+ ["<C-h>"] = false,
+ },
+ view_options = {
+ show_hidden = true,
+ },
+ })
+ end
+ },
+ --Color highlighting
{
"brenoprata10/nvim-highlight-colors",
event = "BufReadPost",
@@ -217,7 +234,7 @@ local plugins = {
},
--PKL
{
- "https://github.com/apple/pkl-neovim",
+ "apple/pkl-neovim",
event = "BufReadPre *.pkl",
dependencies = {
"nvim-treesitter/nvim-treesitter"