diff options
author | Aditya <bluenerd@protonmail.com> | 2023-02-27 10:50:13 +0530 |
---|---|---|
committer | Aditya <bluenerd@protonmail.com> | 2023-02-27 10:50:13 +0530 |
commit | f30bb8736b29333c07acde19faaf9caf45f5b26e (patch) | |
tree | 9a6d9b9f1eb5f8cfd62e662e180cc99f02d608dd /lite-xl/user_settings.lua | |
parent | c023fd7cd95c60252e7a9c89baeaa9a720b4c944 (diff) |
add lite-xl (hopefully correctly)
Diffstat (limited to 'lite-xl/user_settings.lua')
-rw-r--r-- | lite-xl/user_settings.lua | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/lite-xl/user_settings.lua b/lite-xl/user_settings.lua new file mode 100644 index 0000000..cb11461 --- /dev/null +++ b/lite-xl/user_settings.lua @@ -0,0 +1,78 @@ +return { + ["config"] = { + ["always_show_tabs"] = true, + ["animate_drag_scroll"] = true, + ["borderless"] = false, + ["disabled_plugins"] = { + ["bigclock"] = true, + ["smallclock"] = true, + ["statusclock"] = true, + ["tabnumbers"] = true, + ["unboundedscroll"] = true, + ["wordcount"] = true + }, + ["enabled_plugins"] = { + ["custom_caret"] = true, + ["datetimestamps"] = true, + ["drawwhitespace"] = true, + ["minimap"] = true, + ["scale"] = false, + ["treeview"] = true + }, + ["font"] = { + ["fonts"] = { + [1] = { + ["name"] = "Fira Sans Regular", + ["path"] = "/opt/lite-xl/data/fonts/FiraSans-Regular.ttf" + }, + [2] = { + ["name"] = "FiraCode Nerd Font Retina", + ["path"] = "/usr/share/fonts/TTF/Fira Code Retina Nerd Font Complete.ttf" + } + }, + ["options"] = { + ["antialiasing"] = "subpixel", + ["bold"] = false, + ["hinting"] = "slight", + ["italic"] = false, + ["size"] = 15, + ["smoothing"] = false, + ["strikethrough"] = false, + ["underline"] = false + } + }, + ["plugins"] = { + ["autoreload"] = { + ["always_show_nagview"] = true + }, + ["centerdoc"] = { + ["enabled"] = false + }, + ["drawwhitespace"] = { + ["show_trailing_error"] = true + }, + ["lineguide"] = { + ["enabled"] = false + }, + ["linewrapping"] = { + ["enable_by_default"] = true, + ["mode"] = "word" + }, + ["minimap"] = { + ["avoid_small_docs"] = true + }, + ["scale"] = { + ["default_scale"] = "autodetect" + }, + ["scalestatus"] = { + ["enabled"] = true + }, + ["typingspeed"] = { + ["enabled"] = false + } + }, + ["skip_plugins_version"] = true, + ["tab_type"] = "hard", + ["theme"] = "only_dark" + } +} |