19 lines
593 B
Lua
19 lines
593 B
Lua
-- Read the docs: https://www.lunarvim.org/docs/configuration
|
|
-- Example configs: https://github.com/LunarVim/starter.lvim
|
|
-- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6
|
|
-- Forum: https://www.reddit.com/r/lunarvim/
|
|
-- Discord: https://discord.com/invite/Xb9B4Ny
|
|
|
|
lvim.plugins = {
|
|
"askfiy/visual_studio_code",
|
|
"sainnhe/gruvbox-material",
|
|
"sainnhe/everforest",
|
|
"marko-cerovac/material.nvim",
|
|
}
|
|
|
|
lvim.colorscheme = "everforest"
|
|
vim.g.everforest_background = "hard"
|
|
|
|
require("config.go")
|
|
require("config.c")
|
|
-- require("config.py")
|