finish migrating all to lua

This commit is contained in:
Maciej Lebiest 2023-02-11 18:36:50 +01:00
parent e319cb3c2f
commit 9f472d1536
6 changed files with 103 additions and 107 deletions

13
init.lua Normal file
View 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
]]