changes
This commit is contained in:
parent
9a6707d21f
commit
f5daf0ad68
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"ashen.nvim": { "branch": "main", "commit": "738663594426302968780415d07fddb300685ab8" },
|
||||
"auto-session": { "branch": "main", "commit": "0a1318557c03845f2e0dde347bc54507d1d8c34d" },
|
||||
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
|
||||
"cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" },
|
||||
|
@ -12,18 +13,21 @@
|
|||
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
|
||||
"lsp_signature.nvim": { "branch": "master", "commit": "b58cca003d1d3311213d6db0352f58d8e57bfff0" },
|
||||
"lspkind.nvim": { "branch": "master", "commit": "d79a1c3299ad0ef94e255d045bed9fa26025dab6" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "834a5817f7e2be22a7062620032d49c600c35fab" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "1a31f824b9cd5bc6f342fc29e9a53b60d74af245" },
|
||||
"mason.nvim": { "branch": "main", "commit": "fc98833b6da5de5a9c5b1446ac541577059555be" },
|
||||
"mini.nvim": { "branch": "main", "commit": "d570e0b01aabfe949c097983ed6386af60db32ed" },
|
||||
"miasma.nvim": { "branch": "main", "commit": "b50e9ab4f29cbc5d064f75b64acb8383551ad794" },
|
||||
"mini.nvim": { "branch": "main", "commit": "fe8a669078a5066220262f173bf901f322e39c05" },
|
||||
"modus-themes.nvim": { "branch": "master", "commit": "b6c46f8066b2d96cb75d5bc7202a9a4c097b5e9f" },
|
||||
"neo-tree.nvim": { "branch": "v3.x", "commit": "9b5d67119c46e3262ffe1508fe6d8540b79ad75d" },
|
||||
"nvim-bufdel": { "branch": "main", "commit": "523d58e94e7212fff3e05c247b962dc8f93bcfde" },
|
||||
"nvim-cmp": { "branch": "main", "commit": "059e89495b3ec09395262f16b1ad441a38081d04" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "3b4afc104666d4451d9672ea7040cb9f0594f119" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "523a9e148919f58eb5a013f76787e57696e00c93" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "4c3a5848ee0b09ecdea73adcd2a689190aeb728c" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "442e077e326ac467daf9cd63e72120fb450a850b" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "0e21ee8df6235511c02bab4a5b391d18e165a58d" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "57dfa947cc88cdf1baa2c7e13ed31edddd8fb1d1" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
|
||||
"tabby.nvim": { "branch": "main", "commit": "6362aa9595428cefbb6556c05390e8444d1bcd12" },
|
||||
"telescope-fzf-native.nvim": { "branch": "main", "commit": "1f08ed60cafc8f6168b72b80be2b2ea149813e55" },
|
||||
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
||||
"trouble.nvim": { "branch": "main", "commit": "85bedb7eb7fa331a2ccbecb9202d8abba64d37b3" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" }
|
||||
|
|
9
lua/plugins/lualine.lua
Normal file
9
lua/plugins/lualine.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
require('lualine').setup({})
|
||||
end
|
||||
}
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
return {
|
||||
{
|
||||
"echasnovski/mini.nvim",
|
||||
enabled = true,
|
||||
config = function()
|
||||
require("mini.statusline").setup()
|
||||
require("mini.pairs").setup()
|
||||
require("mini.ai").setup()
|
||||
end,
|
||||
},
|
||||
{
|
||||
"echasnovski/mini.nvim",
|
||||
enabled = true,
|
||||
config = function()
|
||||
--require("mini.statusline").setup()
|
||||
require("mini.pairs").setup()
|
||||
require("mini.ai").setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
return {
|
||||
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release' },
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
keys = {
|
||||
|
@ -106,6 +107,8 @@ return {
|
|||
},
|
||||
},
|
||||
}
|
||||
|
||||
require('telescope').load_extension('fzf')
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,9 +1,29 @@
|
|||
return {
|
||||
{
|
||||
"ficcdaf/ashen.nvim",
|
||||
-- optional but recommended,
|
||||
-- pin to the latest stable release:
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
-- configuration is optional!
|
||||
opts = {
|
||||
-- your settings here
|
||||
},
|
||||
config = function()
|
||||
vim.cmd [[ colorscheme ashen ]]
|
||||
end
|
||||
},
|
||||
{
|
||||
"xero/miasma.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
enabled = false,
|
||||
},
|
||||
{
|
||||
"miikanissi/modus-themes.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
enabled = true,
|
||||
enabled = false,
|
||||
config = function()
|
||||
require("modus-themes").setup({
|
||||
line_nr_column_background = false,
|
||||
|
@ -16,7 +36,7 @@ return {
|
|||
end,
|
||||
})
|
||||
|
||||
vim.cmd [[ colorscheme modus_vivendi ]]
|
||||
vim.cmd [[ colorscheme modus ]]
|
||||
end
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue