Remove some redefined default nvim options
This commit is contained in:
parent
5f534a2a4e
commit
e78b5ec766
|
@ -1,31 +1,15 @@
|
|||
-- Opt
|
||||
vim.opt.title = true
|
||||
vim.opt.cmdheight = 0
|
||||
vim.opt.laststatus = 3
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.listchars = { lead = ".", trail = ".", tab = ">->" }
|
||||
vim.opt.listchars = { lead = ".", trail = ".", tab = ">-" }
|
||||
vim.opt.list = true
|
||||
vim.opt.wrap = true
|
||||
vim.opt.linebreak = true
|
||||
vim.opt.autoread = true
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.autoindent = true
|
||||
vim.opt.smartindent = true
|
||||
vim.opt.splitbelow = true
|
||||
vim.opt.splitright = true
|
||||
vim.cmd "filetype indent off"
|
||||
|
||||
-- Global
|
||||
vim.g.python3_host_prog = vim.fn.stdpath "config" .. "/.venv/bin/python"
|
||||
-- vim.g.python_indent = {
|
||||
-- open_paren = "shiftwidth()",
|
||||
-- nested_paren = "shiftwidth()",
|
||||
-- continue = "shiftwidth()",
|
||||
-- closed_paren_align_last_line = "v:false",
|
||||
-- disable_parentheses_indenting = 1,
|
||||
-- }
|
||||
vim.g.loaded_ruby_provider = 0
|
||||
vim.g.loaded_perl_provider = 0
|
||||
|
||||
|
|
Loading…
Reference in a new issue