This commit is contained in:
Bryan Ramos 2024-08-21 16:15:52 -04:00
parent 12b6749545
commit 528964b3e7
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
9 changed files with 73 additions and 12 deletions

View file

@ -29,7 +29,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
install = { colorscheme = { "onedark" } },
-- automatically check for plugin updates
checker = { enabled = false },
})

View file

@ -4,6 +4,7 @@ vim.g.autoformat = false
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.cursorline = true
vim.opt.termguicolors = true
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
@ -20,7 +21,8 @@ vim.opt.undofile = true
vim.o.termguicolors = false
vim.opt.guicursor = "n-v-c:block,i:block,r:block"
vim.opt.fillchars = { eob = " " }
--vim.opt.fillchars = { eob = " " }
vim.cmd([[
autocmd FileType python,haskell,c,cpp setlocal tabstop=4 shiftwidth=4 softtabstop=4