summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/theme.lua
diff options
context:
space:
mode:
author2025-05-16 22:33:54 +0300
committer2025-05-16 22:33:54 +0300
commit49e5fa571005da10d156d14f82e145afaf96214e (patch)
treecefaf0227d17fd900858ec3ddb8b88665f443e08 /nvim/lua/plugins/theme.lua
parentПравки nvim конфига (diff)
downloaddotfiles-49e5fa571005da10d156d14f82e145afaf96214e.tar.gz
dotfiles-49e5fa571005da10d156d14f82e145afaf96214e.tar.bz2
dotfiles-49e5fa571005da10d156d14f82e145afaf96214e.tar.xz
dotfiles-49e5fa571005da10d156d14f82e145afaf96214e.zip
Обновления конфигов
Diffstat (limited to '')
-rw-r--r--nvim/lua/plugins/theme.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua
deleted file mode 100644
index 72a6f81..0000000
--- a/nvim/lua/plugins/theme.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-return {
- "navarasu/onedark.nvim",
- priority = 1000, -- make sure to load this before all the other start plugins
- config = function()
- require("onedark").setup({
- style = "darker",
- colors = {
- bright_orange = "#ff8800", -- define a new color
- },
- highlights = {
- -- ["@lsp.type.keyword"] = { fg = "$green", fmt = "bold,underline" },
- -- ["@lsp.type.property"] = { fg = "$bright_orange", bg = "#00ff00", fmt = "bold" },
- -- ["@lsp.type.function"] = { fg = "#0000ff", sp = "$cyan", fmt = "underline,italic" },
- -- ["@lsp.type.method"] = { link = "@function" },
- -- To add language specific config
- -- ["@lsp.type.variable.go"] = { fg = "none" },
- },
- })
- require("onedark").load()
- end,
-}