Disabled netrw_gitignore and changed tokyonight references to gruvbox

This commit is contained in:
Nickalas Cason 2025-08-23 15:51:08 -04:00
parent c9a3d69fc0
commit 5dd4fc801a
1 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ vim.g.netrw_browse_split = 4 -- Open in previous window
vim.g.netrw_altv = 1 -- Open splits to the right vim.g.netrw_altv = 1 -- Open splits to the right
vim.g.netrw_liststyle = 3 -- Tree view vim.g.netrw_liststyle = 3 -- Tree view
vim.g.netrw_winsize = 25 -- Should be about 25% vim.g.netrw_winsize = 25 -- Should be about 25%
vim.g.netrw_list_hide = vim.fn['netrw_gitignore#Hide']() .. [[.git/]] -- See see `:help netrw-gitignore` --vim.g.netrw_list_hide = vim.fn['netrw_gitignore#Hide']() .. [[.git/]] -- See see `:help netrw-gitignore`
vim.keymap.set('n', '<leader>pv', ':wincmd v<CR>:Ex<CR>:vertical resize 30<CR>', { desc = 'Create netrw listing pane' }) vim.keymap.set('n', '<leader>pv', ':wincmd v<CR>:Ex<CR>:vertical resize 30<CR>', { desc = 'Create netrw listing pane' })
-- TIP: Disable arrow keys in normal mode -- TIP: Disable arrow keys in normal mode
@ -895,7 +895,7 @@ require('lazy').setup({
priority = 1000, -- Make sure to load this before all the other start plugins. priority = 1000, -- Make sure to load this before all the other start plugins.
config = function() config = function()
---@diagnostic disable-next-line: missing-fields ---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup { require('gruvbox').setup {
styles = { styles = {
comments = { italic = false }, -- Disable italics in comments comments = { italic = false }, -- Disable italics in comments
}, },