(neovim) another try of my own setup
This commit is contained in:
parent
50e0f23feb
commit
7225cf3967
54 changed files with 677 additions and 586 deletions
44
_saved/vim/lazyvim/lua/config/options.lua
Normal file
44
_saved/vim/lazyvim/lua/config/options.lua
Normal file
|
@ -0,0 +1,44 @@
|
|||
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 })
|
Loading…
Add table
Add a link
Reference in a new issue