feat: desktop config as base

This commit is contained in:
Fabio Lenherr / DashieTM 2022-12-31 14:50:10 +01:00
parent d589775634
commit 7dba0b18be
34 changed files with 1148 additions and 890 deletions

View file

@ -3,8 +3,8 @@ local options = {
mouse = "n",
fileencoding = "utf-8",
relativenumber = true,
cursorline = false,
number = true,
cursorline = false,
number = true,
smartindent = true,
smartcase = true,
showmode = true,
@ -20,15 +20,12 @@ local options = {
tabstop = 2, -- insert 2 spaces for a tab
scrolloff = 8, -- is one of my fav
sidescrolloff = 8,
spell = false,
syntax = "off",
spell = true,
syntax = "off",
spelllang = "en_us",
mousemodel = "popup_setpos",
}
vim.keymap.set("n", "<Space>", "<Nop>", { silent = true, remap = false })
vim.g.mapleader = " "
--vim.opt.shortmess:append "c"
for k, v in pairs(options) do