Changed tabs to spaces

This commit is contained in:
Ivar Fatland
2023-05-27 00:16:03 +02:00
parent 994f824173
commit da39c4964d
+4 -1
View File
@@ -18,11 +18,14 @@ local keymap = {
vim.g.mapleader = keymap.leader_key
vim.g.maplocalleader = keymap.leader_key
vim.opt.tabstop = 4 -- Chacacter width of a tab
vim.opt.tabstop = 4 -- Character width of a tab
vim.opt.shiftwidth = 0 -- Will always be eual to the tabstop
vim.opt.rnu = true -- Shows relative line numbers
vim.opt.nu = true -- Shows current line number
vim.opt.wrap = false -- Don't wrap the line. Let it go offscreen.
vim.opt.shiftround = true
vim.opt.expandtab = true
-- Will only run the first time nvim launches to install packer
local ensure_packer = function()