from-scratch rewrite #1

Open
kenobi wants to merge 50 commits from from-scratch into master
Showing only changes of commit 3a67710814 - Show all commits

View File

@ -1,6 +1,5 @@
vim.opt.langmap = "+]ü["
vim.keymap.set("n", "ü", "[", {remap=true})
vim.keymap.set("n", "Ü", "]", {remap=true})
vim.opt.expandtab = true
vim.opt.shiftwidth = 4
@ -68,10 +67,10 @@ vim.opt.inccommand = 'split'
-- Show which line your cursor is on
vim.opt.cursorline = true
vim.opt.cursorcolumn = true
vim.opt.cursorcolumn = false
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 35
vim.opt.scrolloff = 20
-- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`),
-- instead raise a dialog asking if you wish to save the current file(s)