diff options
author | Chris <[email protected]> | 2021-06-29 19:17:08 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-06-29 19:17:08 -0400 |
commit | 73276a79c023ff36f5ced5d852bfff8356d261c7 (patch) | |
tree | acf49a6b9b2fce04038c584d7bb81c3e354b3642 /lv-config.lua | |
parent | fba5bc3d8590ccaad017bd4643ddea5a890ca098 (diff) |
updates
Diffstat (limited to 'lv-config.lua')
-rw-r--r-- | lv-config.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lv-config.lua b/lv-config.lua index 9e81fd71..8bebde66 100644 --- a/lv-config.lua +++ b/lv-config.lua @@ -9,6 +9,8 @@ an executable -- general O.auto_complete = true O.colorscheme = 'lunar' +-- TODO is there a lua native way to do this? +vim.cmd('colorscheme ' .. O.colorscheme) O.auto_close_tree = 0 O.wrap_lines = false O.timeoutlen = 100 @@ -108,3 +110,4 @@ O.lang.rust.autoformat = true -- custom autocommands -- user defined plugin config -- custom settings + |