chore: Some small updates to dotfiles , getting ready for arch-config
This commit is contained in:
parent
ca9311c130
commit
f49f85207e
10 changed files with 50 additions and 18 deletions
|
@ -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,
|
||||
},
|
||||
|
||||
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue