nvim migrate to lazy

This commit is contained in:
Niktia Bykov
2024-01-02 13:41:28 +05:00
parent e7abdf2c87
commit 9ff851257a
12 changed files with 116 additions and 459 deletions

View File

@ -1,9 +1,11 @@
vim.opt.backup = false
vim.opt.cmdheight = 1
vim.opt.completeopt = { "menuone", "noselect" }
vim.opt.showmode = false
vim.opt.fileencoding = "utf-8"
vim.opt.ignorecase = true
vim.opt.showtabline = 2
vim.opt.pumblend = 10
vim.opt.smartindent = true
vim.opt.smartcase = true
vim.opt.splitright = true
@ -15,6 +17,8 @@ vim.opt.shiftwidth = 2
vim.opt.updatetime = 300
vim.opt.ttimeoutlen = 5
vim.g.netrw_banner = 0
vim.api.nvim_create_autocmd("FileType", {
pattern = "cs",
command = "setlocal shiftwidth=4 tabstop=4"