feat(none-ls): Add prettier

In defaults.lua change 'opt' to 'go'
Fix catppuccin colorscheme
This commit is contained in:
rajvatsal 2024-01-05 18:02:10 +05:30
parent b3e474b0ca
commit 30511c1c89
3 changed files with 9 additions and 7 deletions

View file

@ -1,8 +1,8 @@
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
vim.go.tabstop = 2
vim.go.shiftwidth = 2
vim.go.expandtab = true
vim.bo.softtabstop = 2
vim.opt.relativenumber = true
vim.go.relativenumber = true
vim.keymap.set('t', '<Esc>', [[<C-\><C-n>]], { noremap = true })
vim.cmd.colorscheme 'gruvbox' -- Set custom colorscheme [[ NOTE: Never set it to "onedark" cuz it breaks the editor ]]