mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
70 lines
1.4 KiB
Lua
70 lines
1.4 KiB
Lua
-- activate config spesific languages
|
|
pcode.lang = {
|
|
-- "angular",
|
|
-- "cpp",
|
|
-- "sql",
|
|
-- "deno",
|
|
-- "golang",
|
|
-- "java",
|
|
-- "javascript",
|
|
-- "kotlin",
|
|
-- "markdown",
|
|
"php",
|
|
-- "prisma",
|
|
-- "python",
|
|
-- "tust",
|
|
-- "tailwind",
|
|
}
|
|
-- activate config extras
|
|
pcode.extras = {
|
|
-- "autosave",
|
|
-- "bigfiles",
|
|
-- "codeiumnvim",
|
|
-- "liveserver",
|
|
-- "minianimate",
|
|
-- "neoscroll",
|
|
-- "nvimufo",
|
|
-- "refactoring",
|
|
-- "rest",
|
|
-- "treesittercontex",
|
|
"codeium",
|
|
"colorizer",
|
|
"dap",
|
|
"deviconcolor",
|
|
"illuminate",
|
|
"indentscupe",
|
|
"navic",
|
|
"nvimmenu",
|
|
"rainbowdelimiters",
|
|
"scrollview",
|
|
"smart-split",
|
|
"verticalcolumn",
|
|
"visualmulti",
|
|
"yanky",
|
|
"zenmode",
|
|
}
|
|
-- activate config themes
|
|
pcode.themes = {
|
|
-- note: open remark only one
|
|
-- **:: Eva Theme ::** --
|
|
evatheme = "Eva-Dark",
|
|
-- evatheme = "Eva-Dark-Italic",
|
|
-- evatheme = "Eva-Dark-Bold",
|
|
-- evatheme = "Eva-Light",
|
|
--
|
|
-- **:: Dracula Theme ::** --
|
|
-- dracula = "dracula",
|
|
-- dracula = "dracula-soft",
|
|
--
|
|
-- **:: Onedarkpro Theme ::** --
|
|
-- onedarkpro = "onedark",
|
|
-- onedarkpro = "onedark_vivid",
|
|
-- onedarkpro = "onedark_dark",
|
|
--
|
|
-- **:: Jetbrains Theme ::** --
|
|
-- jetbrains = "darcula-dark",
|
|
}
|
|
-- activate config transparent_bg
|
|
pcode.transparent = false
|
|
pcode.localcode = true
|
|
pcode.snippets_path = vim.fn.stdpath("config") .. "/mysnippets"
|