chore(nvim): increase tabstop size

This commit is contained in:
Stefan Imhoff
2022-09-05 12:16:07 +02:00
parent 7a25174c9a
commit 43306307e7
2 changed files with 4 additions and 4 deletions

View File

@@ -130,8 +130,8 @@ keymap("v", "<A-j>", ":m .+1<CR>==", opts)
keymap("v", "<A-k>", ":m .-2<CR>==", opts)
-- Navigate buffers
keymap("n", "<S-l>", ":bnext<CR>", opts)
keymap("n", "<S-h>", ":bprevious<CR>", opts)
--[[ keymap("n", "<S-l>", ":bnext<CR>", opts) ]]
--[[ keymap("n", "<S-h>", ":bprevious<CR>", opts) ]]
-- Remap Jump to Tag
keymap("n", "ü", "<C-]>", opts)

View File

@@ -38,12 +38,12 @@ local options = {
sidescrolloff = 8,
signcolumn = "yes:2",
smartcase = true,
softtabstop = 2,
softtabstop = 4,
spelllang = "en_us",
splitbelow = true,
splitright = true,
swapfile = false,
tabstop = 2,
tabstop = 4,
termguicolors = true,
timeoutlen = 300,
title = true,