chore: 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 ca9311c130
commit f49f85207e
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
10 changed files with 50 additions and 18 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,
},
})