mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 23:47:23 +00:00
nvim: remove obsolete options
This commit is contained in:
parent
b96772da8e
commit
f8d7230716
1 changed files with 3 additions and 6 deletions
|
|
@ -48,18 +48,15 @@ vim.o.winborder = 'solid'
|
||||||
-- Hide mode in cmd
|
-- Hide mode in cmd
|
||||||
vim.o.showmode = false
|
vim.o.showmode = false
|
||||||
|
|
||||||
-- Set highlight on search
|
|
||||||
vim.o.hlsearch = true
|
|
||||||
|
|
||||||
-- Make line numbers default
|
-- Make line numbers default
|
||||||
vim.wo.number = true
|
vim.o.number = true
|
||||||
|
|
||||||
-- Enable mouse mode
|
-- Enable mouse mode
|
||||||
vim.o.mouse = 'a'
|
vim.o.mouse = 'a'
|
||||||
vim.o.mousemodel = 'extend'
|
vim.o.mousemodel = 'extend'
|
||||||
|
|
||||||
-- Enable break indent
|
-- Enable break indent
|
||||||
vim.o.breakindent = false
|
vim.o.breakindent = true
|
||||||
|
|
||||||
-- Disable line wrapping
|
-- Disable line wrapping
|
||||||
vim.o.wrap = false
|
vim.o.wrap = false
|
||||||
|
|
@ -74,7 +71,7 @@ vim.o.startofline = true
|
||||||
vim.o.cursorline = true
|
vim.o.cursorline = true
|
||||||
|
|
||||||
-- Keep signcolumn on by default
|
-- Keep signcolumn on by default
|
||||||
vim.wo.signcolumn = 'yes'
|
vim.o.signcolumn = 'yes'
|
||||||
|
|
||||||
-- Hide tildes on unused lines
|
-- Hide tildes on unused lines
|
||||||
vim.o.fillchars = 'eob: '
|
vim.o.fillchars = 'eob: '
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue