finish basic files refactor
This commit is contained in:
parent
94fd2627b9
commit
2754473139
28 changed files with 715 additions and 666 deletions
|
@ -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
|
||||
]]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue