]> localhost Git - nvim.git/commitdiff
feat: default netrw liststyle
authorJansen <[email protected]>
Sat, 12 Oct 2024 20:20:23 +0000 (16:20 -0400)
committerJansen <[email protected]>
Sat, 12 Oct 2024 20:20:23 +0000 (16:20 -0400)
init.lua

index 51e547cb8945d2e6a70e492d86b9d14c05e3015b..4a3320eda51bfcbca20c8b2903383af9b7541584 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -15,6 +15,8 @@ vim.opt.foldenable = true
 
 vim.opt.cursorline = true
 
+vim.g.netrw_liststyle = 1
+
 local tab_next = true
 
 -- Neovide =====================================================================
@@ -189,7 +191,6 @@ vim.api.nvim_create_user_command('Econfig', edit_config, {})
 -- KeyBindings =================================================================
 vim.g.mapleader = vim.keycode' '
 
-
 -- Utils
 vim.keymap.set('n', '<leader>H', function() vim.cmd [[nohl]] end)
 vim.keymap.set('n', '<leader>`', function() vim.cmd [[Neogit]] end)