Compare commits

...

4 Commits

Author SHA1 Message Date
1f3fe12f13 fix(cmp): fix performance of cmd completion
remove path **
2025-06-14 19:13:56 +02:00
35b7a62a1e fix(ui): statusline padding and cmdline height 2025-06-14 19:13:48 +02:00
f66e518acc chore: update plugins 2025-06-14 19:08:42 +02:00
4335223c83 chore: cleanup 2025-06-14 19:08:32 +02:00
6 changed files with 6 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
{
"AstroNvim": { "branch": "main", "commit": "5adafa02ab066326f911160dd6c73d758407fe46" },
"Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" },
"SchemaStore.nvim": { "branch": "main", "commit": "60aa5b633fca5407e95315eaab70fcc102ac4cc8" },
"SchemaStore.nvim": { "branch": "main", "commit": "a3a7a4f1963ee4eb7d4274e4381f5d5338179cf3" },
"aerial.nvim": { "branch": "master", "commit": "3284a2cb858ba009c79da87d5e010ccee3c99c4d" },
"astrocommunity": { "branch": "main", "commit": "9b7d85c1f7d78dda6a83bda5d2094f406c952389" },
"astrocore": { "branch": "main", "commit": "c797dd5a592e2bd154f2503e231b8a4083659534" },

View File

@@ -1,13 +1,2 @@
---@type LazySpec
return {
{ "goolord/alpha-nvim", enabled = false },
-- Which-key
-- {
-- "folke/which-key.nvim",
-- opts = {
-- plugins = {
-- registers = false,
-- },
-- },
-- }
}
return {}

View File

@@ -11,14 +11,10 @@ return {
highlighturl = true,
notifications = true,
},
diagnostics = {
virtual_text = true,
underline = true,
},
options = {
opt = {
clipboard = "",
cmdheight = 1,
cmdheight = 0,
diffopt = {
-- default
"internal",
@@ -49,7 +45,6 @@ return {
breakat = " (),;{}[]",
showbreak = "",
number = false,
path = vim.list_extend(vim.opt.path:get(), { "**" }),
pumblend = 0,
relativenumber = false,
shiftwidth = 4,

View File

@@ -1,13 +1,2 @@
---@type LazySpec
return {
--[[
{
"lewis6991/gitsigns.nvim",
opts = {
signcolumn = false,
numhl = true,
current_line_blame_opts = { ignore_whitespace = true },
},
},
]]
}
return {}

View File

@@ -39,7 +39,7 @@ return {
comp.treesitter({ padding = { right = 1 } }), -- Extra space to separate from next component
comp.git_diff(),
comp.git_branch(),
comp.nav({ scrollbar = false }),
comp.nav({ scrollbar = false, padding = { right = 1 } }),
}
local get_file_path = status.provider.filename({

View File

@@ -1,6 +1,6 @@
---@type LazySpec
return {
-- { "echasnovski/mini.align", event = "User AstroFile" },
{ "tpope/vim-abolish", event = "User AstroFile" },
{ "slint-ui/vim-slint", ft = "slint" },
-- { "stevearc/profile.nvim", lazy = false }, -- Profiling lua
}