Remove some redefined default nvim options

This commit is contained in:
Evie Litherland-Smith 2023-03-07 14:49:19 +00:00
parent 5f534a2a4e
commit e78b5ec766

View file

@ -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