summaryrefslogtreecommitdiff
path: root/nvim/lua/theme/modifiers.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/theme/modifiers.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/theme/modifiers.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/nvim/lua/theme/modifiers.lua b/nvim/lua/theme/modifiers.lua
new file mode 100644
index 0000000..5f5b853
--- /dev/null
+++ b/nvim/lua/theme/modifiers.lua
@@ -0,0 +1,16 @@
+local mods = {
+
+ bold = {"bold", "bold"},
+ italic = {"italic", "italic"},
+ underline = {"underline", "underline"},
+ underdouble = {"underdouble", "underdouble"},
+ underdoted = {"underdoted", "underdoted"},
+ underdashed = {"underdashed", "underdashed"},
+ undercurl = {"undercurl", "undercurl"},
+ reverse = {"reverse", "reverse"},
+ standout = {"standout", "standout"},
+ altfont = {"altfont", "altfont"},
+ strikethrough = {"strikethrough", "strikethrough"},
+ none = {"NONE", "NONE"}
+}
+return mods