initial commit

This commit is contained in:
Jenia Dysin 2024-11-23 18:21:52 +00:00
parent 8d1ef972bc
commit 0019dc2b11
30 changed files with 915 additions and 970 deletions

View file

@ -0,0 +1,30 @@
vim.g.netrw_liststyle = 3
local opt = vim.opt
opt.relativenumber = true
opt.number = true
opt.tabstop = 4
opt.shiftwidth = 4
opt.expandtab = true
opt.autoindent = true
opt.wrap = false
opt.ignorecase = true
opt.smartcase = true
opt.cursorline = true
opt.termguicolors = true
opt.background = 'dark'
opt.signcolumn = 'yes'
opt.backspace = 'indent,eol,start'
opt.clipboard:append 'unnamedplus'
opt.splitright = true
opt.splitbelow = true
opt.swapfile = false