dotfiles/.config/nvim/lua/stachel/init.lua
2025-07-13 18:35:30 +02:00

11 lines
396 B
Lua
Executable file

require("stachel.colorscheme")
require("stachel.lspconfig")
require("stachel.remap")
require("stachel.completion")
require("stachel.latex")
require("stachel.presence")
vim.opt.tabstop = 2 -- Number of spaces that a <Tab> counts for
vim.opt.shiftwidth = 2 -- Number of spaces to use for each step of autoindent
vim.opt.expandtab = true -- Convert tabs to spaces
vim.o.splitright = true