Compare commits

...

2 commits

3 changed files with 14 additions and 6 deletions

View file

@ -0,0 +1,13 @@
return {
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000,
config = function()
local catpuccin = require('catppuccin')
catpuccin.setup({
flavour = 'frappe',
styles = {
},
})
end
}

View file

@ -12,11 +12,6 @@ return {
dependencies = {
{ 'nvim-lua/plenary.nvim' } }
},
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000
},
{
'tpope/vim-fugitive',
name = 'fugitive'

View file

@ -61,7 +61,7 @@ local handlers = {
require('lspconfig').ruff_lsp.setup({
on_attach = function(client, bufnr)
client.server_capabilities.hoverProvider = false
client.server_capabilities.documentFormattingProver = false
client.server_capabilities.documentFormattingProvider = false
end,
})
end,