44 lines
972 B
Lua
44 lines
972 B
Lua
vim.filetype.add({
|
|
pattern = {
|
|
["helmfile.y.ml"] = "helm",
|
|
[".*.gotmpl"] = "helm",
|
|
},
|
|
})
|
|
|
|
vim.o.backup = false
|
|
vim.o.breakindent = true
|
|
vim.o.confirm = true
|
|
vim.o.cursorline = true
|
|
vim.o.expandtab = true
|
|
vim.o.gdefault = true
|
|
vim.o.hlsearch = true
|
|
vim.o.inccommand = "split"
|
|
vim.o.number = true
|
|
vim.o.relativenumber = false
|
|
vim.o.shiftround = true
|
|
vim.o.showcmd = false
|
|
vim.o.showmode = false
|
|
vim.o.smartcase = true
|
|
vim.o.smartindent = true
|
|
vim.o.splitbelow = true
|
|
vim.o.splitright = true
|
|
vim.o.termguicolors = true
|
|
vim.o.undofile = true
|
|
vim.o.wrap = true
|
|
vim.o.writebackup = false
|
|
|
|
vim.o.clipboard = ""
|
|
vim.o.conceallevel = 0
|
|
vim.o.fileencoding = "utf-8"
|
|
vim.o.foldcolumn = "0"
|
|
vim.o.mouse = ""
|
|
vim.o.shiftwidth = 2
|
|
vim.o.signcolumn = "yes"
|
|
vim.o.softtabstop = 2
|
|
vim.o.spelllang = "en_us,pl"
|
|
vim.o.statuscolumn = ""
|
|
vim.o.tabstop = 2
|
|
vim.o.updatetime = 100
|
|
vim.o.whichwrap = ""
|
|
|
|
vim.opt.shortmess:append({ W = true, I = true, c = true, C = true, S = false })
|