New cleaner nvim config. Added config for LF

This commit is contained in:
Thomas Naderer
2024-12-25 09:58:39 +01:00
parent 741e32a1ff
commit 46ae676593
10 changed files with 1345 additions and 136 deletions

8
nvim/lua/settings.lua Normal file
View File

@@ -0,0 +1,8 @@
-- Global settings
vim.opt.tabstop = 4 -- Number of spaces that a <Tab> counts for
vim.opt.shiftwidth = 4 -- Number of spaces for indentation
vim.opt.expandtab = true -- Use spaces instead of tabs
-- Coloscheme
vim.cmd [[colorscheme tokyonight]]