finish migrating all to lua
This commit is contained in:
parent
e319cb3c2f
commit
9f472d1536
6 changed files with 103 additions and 107 deletions
13
init.lua
Normal file
13
init.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
require("initializer")
|
||||
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.opt.termguicolors = true
|
||||
vim.cmd [[
|
||||
highlight clear
|
||||
colorscheme dracula
|
||||
]]
|
Loading…
Add table
Add a link
Reference in a new issue