Compare commits
2 commits
b2ca0c5e13
...
9417d74d14
| Author | SHA1 | Date | |
|---|---|---|---|
| 9417d74d14 | |||
| 30a2313b05 |
3 changed files with 14 additions and 6 deletions
13
.config/nvim/lua/plugins/catppuccin.lua
Normal file
13
.config/nvim/lua/plugins/catppuccin.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local catpuccin = require('catppuccin')
|
||||
catpuccin.setup({
|
||||
flavour = 'frappe',
|
||||
styles = {
|
||||
},
|
||||
})
|
||||
end
|
||||
}
|
||||
|
|
@ -12,11 +12,6 @@ return {
|
|||
dependencies = {
|
||||
{ 'nvim-lua/plenary.nvim' } }
|
||||
},
|
||||
{
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000
|
||||
},
|
||||
{
|
||||
'tpope/vim-fugitive',
|
||||
name = 'fugitive'
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue