nvim config stolen from @Lukacms

This commit is contained in:
2023-11-03 11:24:41 +01:00
parent e881d7c7f5
commit 50c4761b4b
42 changed files with 1809 additions and 0 deletions

29
nvim/lua/highlights.lua Normal file
View File

@@ -0,0 +1,29 @@
local highlight = require("utils").highlight
vim.o.termguicolors = true
highlight("VertSplit", { bg = "None" })
return {
colors = {
columbia_blue = "#9CDCFE",
eclipse = "#3C3C3C",
glabe_green = "#608B4E",
grey = "#808080",
light_grey = "#D4D4D4",
lilac = "#C586C0",
nero = "#262626",
picton_blue = "#569CD6",
straw = "#D7BA7D",
-- Diagnostics
equator = "#E0AF68",
mountain_meadow = "#10B981",
sunset_orange = "#F44747",
-- GitSigns
bordeaux = "#4b1818",
clover = "#4b5632",
raw_umber = "#6F490B",
},
}