mirror of
https://github.com/Phantop/dotfiles
synced 2024-12-27 07:26:43 +00:00
25 lines
466 B
Lua
25 lines
466 B
Lua
vim.opt.background = 'dark'
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
vim.opt.colorcolumn = '85'
|
|
vim.opt.mouse = 'a'
|
|
|
|
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
|
|
|
|
vim.filetype.add{
|
|
extension = {
|
|
rpy = 'python',
|
|
}
|
|
}
|