30 lines
545 B
Lua
30 lines
545 B
Lua
vim.opt.nu = true
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.tabstop = 4
|
|
vim.opt.softtabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.laststatus = 3
|
|
vim.opt.expandtab = true
|
|
vim.opt.hlsearch = false
|
|
vim.opt.incsearch = true
|
|
|
|
vim.opt.smartindent = true
|
|
vim.opt.wrap = true
|
|
|
|
vim.opt.clipboard = "unnamedplus"
|
|
-- vim.opt.signcolumn = "number"
|
|
vim.opt.signcolumn = "yes"
|
|
|
|
vim.opt.termguicolors = true
|
|
vim.opt.cursorline = true
|
|
|
|
-- vim.opt.foldenable = false
|
|
-- vim.opt.foldmethod = "indent"
|
|
|
|
vim.filetype.add({
|
|
extension = {
|
|
mdx = 'mdx'
|
|
}
|
|
})
|