You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
615 B
32 lines
615 B
--vim.opt.guicursor = "" |
|
|
|
vim.opt.nu = true |
|
vim.opt.relativenumber = true |
|
|
|
vim.opt.wrap = false |
|
|
|
vim.opt.backspace = '2' |
|
vim.opt.showcmd = true |
|
vim.opt.laststatus = 2 |
|
|
|
-- use spaces for tabs etc |
|
vim.opt.tabstop = 2 |
|
vim.opt.shiftwidth = 2 |
|
vim.opt.shiftround = true |
|
vim.opt.expandtab = true |
|
|
|
vim.opt.swapfile = false |
|
vim.opt.backup = false |
|
vim.opt.undodir = os.getenv("HOME").. "/.neovim/undodir" |
|
vim.opt.undofile = true |
|
|
|
vim.opt.termguicolors = true |
|
|
|
vim.opt.scrolloff = 8 |
|
vim.opt.signcolumn = "yes" |
|
vim.opt.isfname:append("@-@") |
|
|
|
vim.opt.updatetime = 50 |
|
vim.opt.colorcolumn = "80" |
|
|
|
|
|
|