Meine Anpassungen an kickstart.nvim

This commit is contained in:
orcensplitter 2025-04-01 20:21:10 +02:00
parent e947649cb0
commit 7027051b4a
3 changed files with 58 additions and 2 deletions

View file

@ -0,0 +1,18 @@
-- disable netrw
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- Disable line wrap
vim.opt.wrap = false
-- No swap file
vim.opt.swapfile = false
-- Set shiftwidth and tabstop
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.termguicolors = true
return {}