mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 18:14:40 +02:00
feat(615): transparent background option (#617)
This commit is contained in:
parent
7e78b14009
commit
0096e0baa9
3 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 ---
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue