nouveau truc

This commit is contained in:
Frizzus 2025-01-07 23:35:16 +01:00
parent 72c54e68ad
commit ca932c83df
4 changed files with 145 additions and 21 deletions

View file

@ -0,0 +1,15 @@
return {
setup = function()
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
vim.cmd.colorscheme 'retrobox'
vim.cmd.set 'tabline=no'
vim.cmd.set 'nonumber'
vim.o.tabstop = 4
vim.o.shiftwidth = 4
vim.o.expandtab = true
end,
}