[MINOR] Some small updates to dotfiles , getting ready for arch-config

This commit is contained in:
Afonso Franco 2023-01-29 02:08:14 +00:00
parent 11a280281c
commit 4eb3a06af1
Signed by: afonso
GPG key ID: C459E0BB3DCEE899
11 changed files with 65 additions and 30 deletions

View file

@ -9,7 +9,7 @@ lazy.setup({
{ 'catppuccin/nvim',
lazy = false,
priority = 1000,
config = function ()
config = function()
require('plugins.catppuccin')
end
},
@ -21,6 +21,14 @@ lazy.setup({
end
},
{ 'folke/zen-mode.nvim',
config = function()
require("zen-mode").setup {
vim.keymap.set('n', '<leader>z', '<Cmd> ZenMode <CR>',{noremap=true,silent=true})
}
end
},
--Change add and remove surroundings from words
'tpope/vim-surround',
@ -63,7 +71,11 @@ lazy.setup({
--LSP Status
{ 'j-hui/fidget.nvim',
config = function()
require('fidget').setup {}
require('fidget').setup {
window = {
blend = 0,
}
}
end
},
@ -115,12 +127,6 @@ lazy.setup({
require("plugins.bufferline")
end
},
--{ 'romgrk/barbar.nvim',
-- dependencies = 'nvim-tree/nvim-web-devicons',
-- config = function()
-- require 'plugins.barbar'
-- end
--},
--does so much
{
@ -139,4 +145,5 @@ lazy.setup({
end,
},
})