This commit is contained in:
Never Gude 2025-12-26 04:59:39 +01:00
parent 75457315b2
commit d4ca0b9a22

View file

@ -86,6 +86,9 @@ P.S. You can delete this when you're done too. It's your config now! :)
vim.o.guifont = 'SauceCodePro NF:h12'
vim.o.autochdir = true
vim.o.softtabstop = 2
vim.o.shiftwidth = 2
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
@ -249,6 +252,7 @@ rtp:prepend(lazypath)
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can also be added by using a table,