Skip to content

Commit

Permalink
fix(options): force disable colorcolumn and winblend
Browse files Browse the repository at this point in the history
  • Loading branch information
theol0403 committed Aug 30, 2023
1 parent 479f525 commit de11cf3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/lua/vscode-neovim/force-options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ vim.opt.autoread = false
vim.opt.autowrite = false
vim.opt.cursorline = false
vim.opt.signcolumn = "no"
vim.opt.winblend = 0

--- Disable statusline and ruler since we don't need them anyway
vim.opt.statusline = ""
vim.opt.laststatus = 0
vim.opt.ruler = false
vim.opt.colorcolumn = nil

--- Disable modeline processing. It's being used for tab related settings usually and we don't want to override ours
vim.opt.modeline = false
Expand Down

0 comments on commit de11cf3

Please sign in to comment.