Skip to content

Commit 6ce4e74

Browse files
committed
Personal preferences 1st commit
1 parent e947649 commit 6ce4e74

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

init.lua

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191
vim.g.maplocalleader = ' '
9292

9393
-- Set to true if you have a Nerd Font installed and selected in the terminal
94-
vim.g.have_nerd_font = false
94+
vim.g.have_nerd_font = true
9595

9696
-- [[ Setting options ]]
9797
-- See `:help vim.opt`
@@ -102,11 +102,16 @@ vim.g.have_nerd_font = false
102102
vim.opt.number = true
103103
-- You can also add relative line numbers, to help with jumping.
104104
-- Experiment for yourself to see if you like it!
105-
-- vim.opt.relativenumber = true
105+
vim.opt.relativenumber = true
106106

107107
-- Enable mouse mode, can be useful for resizing splits for example!
108108
vim.opt.mouse = 'a'
109109

110+
local TAB_WIDTH = 3
111+
vim.opt.tabstop = TAB_WIDTH
112+
vim.opt.softtabstop = TAB_WIDTH
113+
vim.opt.shiftwidth = TAB_WIDTH
114+
110115
-- Don't show the mode, since it's already in the status line
111116
vim.opt.showmode = false
112117

0 commit comments

Comments
 (0)