added color support and started basic config

This commit is contained in:
venus
2025-12-08 22:04:30 -06:00
parent 9526515fdb
commit d59f34a6f3
5 changed files with 48 additions and 0 deletions

View File

@@ -33,6 +33,19 @@ vim.g.have_nerd_font = false
-- NOTE: You can change these options as you wish!
-- For more options, you can see `:help option-list`
-- # STARTUP SCRIPT
vim.cmd ':cd %:h' -- set local directory when opening nvim
-- vim.cmd ("Explore")
--vim.cmd 'Lexplore'
-- netRW settings
-- set netrw style to tree by default
vim.g.netrw_liststyle = 3
vim.g.netrw_banner = 1
vim.g.netrw_altv = 1 -- Create the split of the Netrw window to the left
--vim.cmd(':Lexplore %:p:h') -- Use this to open the local directory
-- Make line numbers default
vim.o.number = true
-- You can also add relative line numbers, to help with jumping.