feat: eww hypr alacritty and more

This commit is contained in:
Fabio Lenherr 2022-08-31 00:28:44 +02:00
parent 7fb4f9ee73
commit 99f7c60db7
No known key found for this signature in database
GPG key ID: 868FFD689D878939
431 changed files with 9853 additions and 23 deletions

View file

@ -0,0 +1,33 @@
local options = {
clipboard = "unnamedplus",
mouse = "a",
fileencoding = "utf-8",
relativenumber = true,
smartindent = true,
smartcase = true,
showmode = true,
termguicolors = true,
-- winbar = "",
ignorecase = true,
showtabline = 2,
timeoutlen = 100, -- time to wait for a mapped sequence to complete (in milliseconds)
undofile = true, -- enable persistent undoi updatetime = 300, -- faster completion (4000ms default)
writebackup = false, -- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited
expandtab = true, -- convert tabs to spaces
shiftwidth = 2, -- the number of spaces inserted for each indentation
tabstop = 2, -- insert 2 spaces for a tab
cursorline = true,
scrolloff = 8, -- is one of my fav
sidescrolloff = 8,
spell = true,
spelllang = "en_us",
mousemodel = "popup_setpos",
}
--vim.opt.shortmess:append "c"
for k, v in pairs(options) do
vim.opt[k] = v
end