Configuration files for my GNU/Linux installation.
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.
dotfiles/nvim2/.config/nvim/init.lua

24 lines
447 B

2 years ago
-- __ ___
-- __\ \ / (_)_ __ ___
-- / _ \ \ / /| | '_ ` _ \
-- | __/\ 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