holy shit I think I got it working on windows

This commit is contained in:
topper3418 2024-07-14 03:05:19 -05:00
parent f328a7e2f5
commit 494e0233c8
2 changed files with 10 additions and 3 deletions

View File

@ -356,6 +356,5 @@ vim.opt.smartindent = true
-- this is transparent background -- this is transparent background
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' }) vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
-- The line beneath this is called `modeline`. See `:help modeline` -- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et -- vim: ts=2 sts=2 sw=2 et

View File

@ -24,8 +24,16 @@ return {
['g.'] = 'actions.toggle_hidden', ['g.'] = 'actions.toggle_hidden',
['g\\'] = 'actions.toggle_trash', ['g\\'] = 'actions.toggle_trash',
}, },
keys = {
{
'-',
'<CMD>Oil<CR>',
desc = 'Open parent directory',
mode = { 'n' }
}
},
use_default_keymaps = false, use_default_keymaps = false,
-- Optional dependencies -- Optional dependencies
dependencies = { 'echasnovski/mini.icons' }, -- dependencies = { 'echasnovski/mini.icons' },
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if prefer nvim-web-devicons dependencies = { 'nvim-tree/nvim-web-devicons' }, -- use if prefer nvim-web-devicons
} }