summaryrefslogtreecommitdiff
path: root/lua/settings.lua
diff options
context:
space:
mode:
authorWilliam Goulois <[email protected]>2021-07-03 19:52:07 +0200
committerGitHub <[email protected]>2021-07-03 13:52:07 -0400
commit0096e0baa93f26097c1ce26a9e0a72bed0c5a468 (patch)
treea434f022a70ce5100781caa5f8dd3c8be5f07467 /lua/settings.lua
parent7e78b140091a189b6e3ff8751b123bf585640db8 (diff)
feat(615): transparent background option (#617)
Diffstat (limited to 'lua/settings.lua')
-rw-r--r--lua/settings.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/settings.lua b/lua/settings.lua
index b137e04a..6c7f7ddf 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -13,7 +13,9 @@ cmd('let &titleold="'..TERMINAL..'"')
cmd('set inccommand=split') -- show what you are substituting in real time
cmd('set iskeyword+=-') -- treat dash as a separate word
cmd('set whichwrap+=<,>,[,],h,l') -- move to next line with theses keys
-
+if O.transparent_window then
+ cmd('au ColorScheme * hi Normal ctermbg=none guibg=none')
+ end
--- SETTINGS ---