finish basic files refactor

This commit is contained in:
Maciej Lebiest 2023-02-12 18:26:24 +01:00
parent 94fd2627b9
commit 2754473139
28 changed files with 715 additions and 666 deletions

View file

@ -27,3 +27,17 @@ map("i", "<S-Tab>", "<Esc><<i")
map("n", "<Tab>", ">>")
map("v", "<Tab>", ">gv")
map("v", "<S-Tab>", "<gv")
vim.opt.mouse = "c" -- set mouse in command line mode
vim.opt.colorcolumn = "80" -- highlight this column
vim.opt.relativenumber = true
vim.opt.number = true
vim.opt.clipboard = "unnamedplus" -- synchronize with system clipboard
vim.opt.swapfile = false
vim.opt.cursorline = true
vim.cmd [[
highlight clear
colorscheme dracula
]]