mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
447 B
23 lines
447 B
-- __ ___
|
|
-- __\ \ / (_)_ __ ___
|
|
-- / _ \ \ / /| | '_ ` _ \
|
|
-- | __/\ V / | | | | | | |
|
|
-- \___| \_/ |_|_| |_| |_|
|
|
-- epsilons Viim
|
|
|
|
require("evim.init")
|
|
|
|
-- Theme
|
|
vim.opt.termguicolors = true
|
|
vim.cmd.colorscheme "melange"
|
|
|
|
-- Editor settings
|
|
vim.opt.nu = true
|
|
vim.opt.scrolloff = 4
|
|
|
|
vim.opt.autoindent = true
|
|
vim.opt.tabstop = 4
|
|
vim.opt.shiftwidth = 4
|
|
|
|
vim.opt.hlsearch = false
|
|
vim.opt.incsearch = true
|
|
|