You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lua/options.lua
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
vim.o.number=true
8
8
-- You can also add relative line numbers, to help with jumping.
9
9
-- Experiment for yourself to see if you like it!
10
-
--vim.o.relativenumber = true
10
+
vim.o.relativenumber=true
11
11
12
12
-- Enable mouse mode, can be useful for resizing splits for example!
13
13
vim.o.mouse='a'
@@ -72,3 +72,15 @@ vim.o.scrolloff = 10
72
72
vim.o.confirm=true
73
73
74
74
-- vim: ts=2 sts=2 sw=2 et
75
+
76
+
-- Eliot's Additional customizations below
77
+
78
+
vim.o.backspace='2' -- No backspace weirdness - not sure if this is necessary with nvim/kickstart
79
+
vim.o.expandtab=true-- Tabs are converted to spaces
80
+
vim.o.tabstop=4-- Tabs are four spaces wide
81
+
vim.o.shiftwidth=4-- When auto-indent is on, use four spaces
82
+
vim.o.smarttab=true-- Switch between indent and tab, depending on location
83
+
84
+
vim.o.hi=150-- command history is 150 long
85
+
86
+
-- vim.opt.shortmess:remove { 'S' } -- Enable display of position and count of search results -- This is handled by the kickstart status line but I'm leaving this in as a reference for how to remove options
0 commit comments