Skip to content

Commit

Permalink
Move colors loading after lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
ViViDboarder committed Sep 17, 2024
1 parent 6d4a1b2 commit d2e67b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion neovim/lua/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ local o = vim.o
-- Helpers
require("_settings")
require("_bindings")
require("_colors")

-- Use better grep programs
if vim.fn.executable("rg") == 1 then
Expand All @@ -25,3 +24,6 @@ vim.g.polyglot_disabled = { "go", "rust" }

-- Plugins
require("lazy_init")

-- Load colors after plugins
require("_colors")

0 comments on commit d2e67b4

Please sign in to comment.