diff options
author | Abouzar Parvan <[email protected]> | 2021-07-09 16:37:25 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-09 08:07:25 -0400 |
commit | 2866ba528c7b49c7c7261a327750a7b8fcff345d (patch) | |
tree | 2d55fc73758d78a0c733b48930ed73aa3b245c9b /lua/settings.lua | |
parent | a9e7b6ff8c60e70df22189d7f1ad17f893e1a727 (diff) |
fix styling issues (#811)
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index 78e9e777..06da6e6d 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -11,8 +11,8 @@ cmd "set inccommand=split" cmd "set iskeyword+=-" cmd "set whichwrap+=<,>,[,],h,l" if O.transparent_window then - cmd "au ColorScheme * hi Normal ctermbg=none guibg=none" - cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none" + cmd "au ColorScheme * hi Normal ctermbg=none guibg=none" + cmd "au ColorScheme * hi SignColumn ctermbg=none guibg=none" end --- SETTINGS --- @@ -21,7 +21,7 @@ opt.backup = false -- creates a backup file opt.clipboard = O.clipboard -- allows neovim to access the system clipboard opt.cmdheight = O.cmdheight -- more space in the neovim command line for displaying messages opt.colorcolumn = "99999" -- fix indentline for now -opt.completeopt = {"menuone", "noselect"} +opt.completeopt = { "menuone", "noselect" } opt.conceallevel = 0 -- so that `` is visible in markdown files opt.fileencoding = "utf-8" -- the encoding written to a file opt.guifont = "monospace:h17" -- the font used in graphical neovim applications |