feat(615): transparent background option (#617)

This commit is contained in:
William Goulois 2021-07-03 19:52:07 +02:00 committed by GitHub
parent 7e78b14009
commit 0096e0baa9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -20,6 +20,7 @@ O = {
smart_case = true,
lushmode = false,
hl_search = false,
transparent_window = false;
leader_key = "space";
-- @usage pass a table with your desired languages

View file

@ -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 ---