initial commit

This commit is contained in:
tiasmt 2025-05-22 09:45:59 +02:00
parent a34a00b4d2
commit d2adb66f25
2 changed files with 16 additions and 2 deletions

View file

@ -1,4 +1,4 @@
--[[
--[[init
=====================================================================
==================== READ THIS BEFORE CONTINUING ====================
@ -160,6 +160,11 @@ require('lazy').setup({
},
},
{
'stevearc/oil.nvim',
opts = {},
},
--- vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' }),
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
--
-- This is often very useful to both group configuration, as well as handle
@ -174,7 +179,6 @@ require('lazy').setup({
-- Then, because we use the `config` key, the configuration only runs
-- after the plugin has been loaded:
-- config = function() ... end
{ -- Useful plugin to show you pending keybinds.
'folke/which-key.nvim',
event = 'VimEnter', -- Sets the loading event to 'VimEnter'