2024-07-26 17:47:10 +00:00
|
|
|
vim.opt.background = 'dark'
|
|
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
|
|
vim.opt.colorcolumn = '85'
|
|
|
|
vim.opt.mouse = 'a'
|
2024-10-29 21:45:20 +00:00
|
|
|
|
2024-07-26 17:47:10 +00:00
|
|
|
vim.opt.shiftwidth = 4
|
|
|
|
vim.opt.textwidth = 0
|
|
|
|
vim.opt.wrapmargin = 0
|
|
|
|
|
|
|
|
vim.opt.cursorline = true
|
|
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.ignorecase = true
|
|
|
|
vim.opt.linebreak = true
|
|
|
|
vim.opt.number = true
|
|
|
|
vim.opt.smartcase = true
|
|
|
|
vim.opt.smartindent = true
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.wrap = false
|
2024-10-29 21:45:20 +00:00
|
|
|
|
|
|
|
vim.filetype.add{
|
|
|
|
extension = {
|
|
|
|
rpy = 'python',
|
|
|
|
}
|
|
|
|
}
|