recent changes
This commit is contained in:
parent
78ad9fe4b2
commit
fcdb4c03f9
8
init.lua
8
init.lua
|
|
@ -158,6 +158,9 @@ vim.o.inccommand = 'split'
|
||||||
-- Show which line your cursor is on
|
-- Show which line your cursor is on
|
||||||
vim.o.cursorline = true
|
vim.o.cursorline = true
|
||||||
|
|
||||||
|
-- Enable true color support
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
-- Minimal number of screen lines to keep above and below the cursor.
|
-- Minimal number of screen lines to keep above and below the cursor.
|
||||||
vim.o.scrolloff = 10
|
vim.o.scrolloff = 10
|
||||||
|
|
||||||
|
|
@ -166,6 +169,11 @@ vim.o.scrolloff = 10
|
||||||
-- See `:help 'confirm'`
|
-- See `:help 'confirm'`
|
||||||
vim.o.confirm = true
|
vim.o.confirm = true
|
||||||
|
|
||||||
|
vim.opt.tabstop = 4 -- Number of spaces a <Tab> in the file counts for
|
||||||
|
vim.opt.softtabstop = 4 -- Number of spaces a <Tab> counts for while editing
|
||||||
|
vim.opt.shiftwidth = 4 -- Number of spaces to use for each step of (auto)indent
|
||||||
|
vim.opt.expandtab = true -- Convert tabs to spaces
|
||||||
|
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
-- See `:help vim.keymap.set()`
|
-- See `:help vim.keymap.set()`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue