refactor: remove some unused config

This commit is contained in:
Moritz Böhme 2025-05-29 16:06:32 +02:00
parent e784c45b9f
commit 7f9d44b107
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9

View file

@ -3,7 +3,6 @@ vim.g.maplocalleader = ","
vim.opt.autoindent = true
vim.opt.backupdir = { vim.fn.stdpath("state") .. "/backup/" } -- don't store backup in files dir
vim.opt.clipboard = "unnamedplus" -- sync with system clipboard
vim.opt.conceallevel = 2
vim.opt.expandtab = true -- spaces instead of tabs
vim.opt.ignorecase = true
@ -37,8 +36,3 @@ vim.cmd("cnoreabbrev wQ wq")
vim.cmd("cnoreabbrev WQ wq")
vim.cmd("cnoreabbrev W w")
vim.cmd("cnoreabbrev Q q")
if vim.g.neovide then
vim.opt.guifont = "Fira Code Nerd Font:h10"
vim.g.neovide_scale_factor = 0.7
end