1
0

Added old colour scheme

Enabled colour scheme
Enabled filetype indent
This commit is contained in:
2025-09-24 16:49:47 +01:00
parent 1f4f7dc0dc
commit 42b161fe21
2 changed files with 85 additions and 0 deletions

View File

@@ -1,3 +1,17 @@
vim.cmd("colorscheme scheme")
vim.cmd("filetype indent on")
-- Language people you have more important things to do than police the code style, if people
-- want consistent styling it should be done at a project level using a linter or .editorconfig
vim.g.rust_recommended_style = false
vim.g.python_recommended_style = false
vim.g.go_recommended_style = false
vim.g.zig_recommended_style = false
vim.g.markdown_recommended_style = false
vim.g.arduino_recommended_style = false
vim.g.gdscript_recommended_style = false
vim.g.yaml_recommended_style = false
-- Basic options
vim.o.tabstop = 2
vim.o.shiftwidth = 0