summaryrefslogtreecommitdiff
path: root/utils/installer/lv-config.example.lua
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-07-25 00:40:19 -0400
committerGitHub <[email protected]>2021-07-25 00:40:19 -0400
commit6d7dd14245e30855ea9445c3c7bddb84aa9a2413 (patch)
tree336430ea7dc4800cd19c4a90b7ab26fece7201d3 /utils/installer/lv-config.example.lua
parent0dec3eee533e11a9b975c0b98e755f9332899b10 (diff)
Standardize compe builtin (#1083)
* use lvim.builtin for compe * fix example config Co-authored-by: Chris <[email protected]>
Diffstat (limited to 'utils/installer/lv-config.example.lua')
-rw-r--r--utils/installer/lv-config.example.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/utils/installer/lv-config.example.lua b/utils/installer/lv-config.example.lua
index 027b1b86..a88bf6b4 100644
--- a/utils/installer/lv-config.example.lua
+++ b/utils/installer/lv-config.example.lua
@@ -12,7 +12,6 @@ an executable
lvim.format_on_save = true
lvim.lint_on_save = true
-lvim.completion.autocomplete = true
lvim.colorscheme = "spacegray"
-- keymappings
lvim.leader = "space"
@@ -42,9 +41,9 @@ lvim.builtin.nvimtree.side = "left"
lvim.builtin.nvimtree.show_icons.git = 0
-- if you don't want all the parsers change this to a table of the ones you want
-lvim.treesitter.ensure_installed = "maintained"
-lvim.treesitter.ignore_install = { "haskell" }
-lvim.treesitter.highlight.enabled = true
+lvim.builtin.treesitter.ensure_installed = "maintained"
+lvim.builtin.treesitter.ignore_install = { "haskell" }
+lvim.builtin.treesitter.highlight.enabled = true
-- generic LSP settings
-- you can set a custom on_attach function that will be used for all the language servers