summaryrefslogtreecommitdiff
path: root/lua/lv-globals.lua
diff options
context:
space:
mode:
authorrebuilt <[email protected]>2021-05-03 02:31:16 +0200
committerGitHub <[email protected]>2021-05-02 20:31:16 -0400
commitf15428e6550db4e37e25af54fb511459e26b6cb1 (patch)
tree8bb3555f89e7a421c6f3ba880d7a4e2ba4ae6480 /lua/lv-globals.lua
parent99364ef2b736c28e4b4afd739ca3469a604c4a02 (diff)
Adds the ability to toggle on/off whichkey and dashboard (#337)
Diffstat (limited to 'lua/lv-globals.lua')
-rw-r--r--lua/lv-globals.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/lua/lv-globals.lua b/lua/lv-globals.lua
index dedf397b..5cf4e606 100644
--- a/lua/lv-globals.lua
+++ b/lua/lv-globals.lua
@@ -7,6 +7,17 @@ O = {
number = true,
relative_number = true,
shell = 'bash',
+ -- Plugin settings
+ -- ========================================
+ dashboard = {
+ enable = true,
+ },
+ whichkey = {
+ enable = true,
+ },
+
+ -- LSP settings
+ -- ========================================
-- @usage pass a table with your desired languages
treesitter = {
@@ -60,7 +71,7 @@ O = {
ruby = {
diagnostics = {virtualtext = true, signs = true, underline = true},
filetypes = {'rb', 'erb', 'rakefile'}
- }
+ },
-- css = {formatter = '', autoformat = false, virtual_text = true},
-- json = {formatter = '', autoformat = false, virtual_text = true}
}