added oil to nvim config

This commit is contained in:
Arpan Swaroop 2025-01-14 12:31:44 -06:00
parent be53c9686e
commit 631667a8c2
2 changed files with 22 additions and 6 deletions

View File

@ -99,7 +99,7 @@ vim.g.have_nerd_font = true
-- For more options, you can see `:help option-list`
-- Make line numbers default
--vim.opt.number = true
vim.opt.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
vim.opt.relativenumber = true
@ -163,7 +163,9 @@ vim.opt.scrolloff = 10
-- See `:help hlsearch`
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
-- CUSTOM KEYMAPS MOVE TO SEPERATE FILE PLEASE!!!!!
vim.keymap.set('i', 'kj', '<Esc>')
vim.keymap.set('n', '-', '<Cmd>Oil<CR>', { desc = 'Open Parent Directory' })
-- Diagnostic keymaps
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })
@ -937,17 +939,17 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.indent_line',
-- require 'kickstart.plugins.lint',
-- require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.autopairs',
-- require 'kickstart.plugins.neo-tree',
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!

View File

@ -2,4 +2,18 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{
'stevearc/oil.nvim',
opts = {},
dependencies = { { 'echasnovski/mini.icons', opts = {} } },
config = function()
require('oil').setup {
default_file_explorer = true,
view_options = {
show_hidden = true,
},
}
end,
},
}