summaryrefslogtreecommitdiff
path: root/lua/default-config.lua
diff options
context:
space:
mode:
authorZahin Muhaimeen <[email protected]>2021-07-04 01:33:54 +1000
committerGitHub <[email protected]>2021-07-03 11:33:54 -0400
commit1137ef1a4a16649879b79102baead425bfe3c782 (patch)
tree0e8fea343dbc8dcd18459e01fd1e124481505871 /lua/default-config.lua
parent98c432408483002e2d684486a7cee10a309883f4 (diff)
faster settings.lua; added globals to default conf (#609)
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r--lua/default-config.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua
index c3465344..19722b1e 100644
--- a/lua/default-config.lua
+++ b/lua/default-config.lua
@@ -1,6 +1,7 @@
CONFIG_PATH = vim.fn.stdpath('config')
DATA_PATH = vim.fn.stdpath('data')
CACHE_PATH = vim.fn.stdpath('cache')
+TERMINAL = vim.fn.expand('$TERMINAL')
O = {
auto_close_tree = 0,
@@ -18,6 +19,7 @@ O = {
ignore_case = true,
smart_case = true,
lushmode = false,
+ hl_search = false,
leader_key = "space";
-- @usage pass a table with your desired languages
@@ -188,8 +190,7 @@ O = {
formatter = '',
autoformat = false,
virtual_text = true
- },
- zig = {}
+ }
},