2023-01-17 10:21:02 +00:00
|
|
|
vim.opt.title = true
|
2023-02-15 17:29:08 +00:00
|
|
|
vim.opt.cmdheight = 0
|
2023-02-13 12:57:12 +00:00
|
|
|
vim.g.python3_host_prog = "/usr/bin/python3"
|
2022-11-03 11:29:01 +00:00
|
|
|
vim.g.python_indent = {
|
2023-02-13 12:57:12 +00:00
|
|
|
open_paren = "shiftwidth()",
|
|
|
|
nested_paren = "shiftwidth()",
|
|
|
|
continue = "shiftwidth()",
|
|
|
|
closed_paren_align_last_line = "v:false",
|
2022-11-03 11:29:01 +00:00
|
|
|
}
|
2023-01-16 11:25:17 +00:00
|
|
|
vim.opt.termguicolors = true
|
2023-02-14 18:00:43 +00:00
|
|
|
vim.opt.laststatus = 3
|
2023-01-25 18:36:39 +00:00
|
|
|
vim.opt.mouse = "nv"
|
2022-11-07 16:41:35 +00:00
|
|
|
vim.opt.shiftwidth = 4
|
|
|
|
vim.opt.number = true
|
|
|
|
vim.opt.relativenumber = true
|
2023-02-13 12:57:12 +00:00
|
|
|
vim.opt.listchars = { trail = ".", tab = ">_" }
|
2022-11-07 16:41:35 +00:00
|
|
|
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
|