From e62ded554605c069778cbc830396736e0d90fef2 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Sat, 10 Jan 2026 09:38:42 -0300 Subject: [PATCH] refactor(plugins): change plugin initiatin order --- lua/dot/init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/dot/init.lua b/lua/dot/init.lua index d8b0e80..4715754 100644 --- a/lua/dot/init.lua +++ b/lua/dot/init.lua @@ -1,9 +1,6 @@ vim.g.mapleader = " " vim.g.maplocalleader = " " ----- Plugins -require("dot.plugins") - -- Filetype plugins vim.o.filetype = "on" @@ -28,9 +25,6 @@ vim.o.breakindent = true vim.o.list = true vim.opt.listchars = { tab = "│ ", trail = ".", nbsp = "␣" } --- Theme -vim.cmd.colorscheme("catppuccin") - ---- -- Mouse support @@ -87,9 +81,15 @@ vim.diagnostic.config({ }, }) +---- Plugins +require("dot.plugins") + require("dot.commands") require("dot.keymaps") +-- Theme +vim.cmd.colorscheme("catppuccin") + require("nvim-treesitter.configs").setup({ auto_install = false, highlight = { enable = true },