summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/onedark.lua
diff options
context:
space:
mode:
author2025-05-13 10:07:17 +0300
committer2025-05-13 10:07:17 +0300
commite9a2f811b7d030cb8701bd8459fd5c842a521eff (patch)
tree2c59e183408f6d814bdb32453cae84f03f8bf88b /nvim/lua/plugins/onedark.lua
parentПоправил тему zsh (diff)
downloaddotfiles-e9a2f811b7d030cb8701bd8459fd5c842a521eff.tar.gz
dotfiles-e9a2f811b7d030cb8701bd8459fd5c842a521eff.tar.bz2
dotfiles-e9a2f811b7d030cb8701bd8459fd5c842a521eff.tar.xz
dotfiles-e9a2f811b7d030cb8701bd8459fd5c842a521eff.zip
Правки nvim конфига
Diffstat (limited to 'nvim/lua/plugins/onedark.lua')
-rw-r--r--nvim/lua/plugins/onedark.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/nvim/lua/plugins/onedark.lua b/nvim/lua/plugins/onedark.lua
deleted file mode 100644
index f4c4aca..0000000
--- a/nvim/lua/plugins/onedark.lua
+++ /dev/null
@@ -1,33 +0,0 @@
-return {
- "navarasu/onedark.nvim",
- opts = {
- style = "darker",
- transparent = false, -- Show/hide background
- term_colors = true, -- Change terminal color as per the selected theme style
- ending_tildes = true, -- Show the end-of-buffer tildes. By default they are hidden
- cmp_itemkind_reverse = false, -- reverse item kind highlights in cmp menu
- toggle_style_key = nil, -- keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "<leader>ts"
- toggle_style_list = { "dark", "darker", "cool", "deep", "warm", "warmer", "light" }, -- List of styles to toggle between
-
- code_style = {
- comments = "italic",
- keywords = "none",
- functions = "none",
- strings = "none",
- variables = "none",
- },
-
- lualine = {
- transparent = false, -- lualine center bar transparency
- },
-
- colors = {}, -- Override default colors
- highlights = {}, -- Override highlight groups
-
- diagnostics = {
- darker = true, -- darker colors for diagnostic
- undercurl = true, -- use undercurl instead of underline for diagnostics
- background = true, -- use background color for virtual text
- },
- },
-}