Re-enable option file

This commit is contained in:
2025-06-13 13:21:52 -04:00
parent 15854368be
commit be15a458dc

View File

@@ -6,11 +6,6 @@
vim.g.mapleader = ','
vim.g.localleader = '\\'
-- IMPORTS
-- require('keys') -- Global Keymaps
-- require('vars') -- Variables
-- require('nvim_options') -- Global Neovim Options
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
@@ -33,5 +28,10 @@ require("lazy").setup("plugins", {
checker = { enabled = false },
})
-- IMPORTS
require('keys') -- Global Keymaps
require('vars') -- Variables
require('nvim_options') -- Global Neovim Options
-- Colorscheme
vim.cmd[[colorscheme gruvbox]]