[VERSION BUMP] Lazy vim: 14.11.0 nvim: 0.10.4

This commit is contained in:
Daveanand Mannie
2025-02-09 23:43:16 -05:00
parent 5bd5a91540
commit 63d1472eaa
7 changed files with 87 additions and 127 deletions

View File

@@ -9,22 +9,3 @@ vim.api.nvim_create_autocmd("FileType", {
vim.bo.shiftwidth = 2
end,
})
local cmp = require("cmp")
cmp.setup({
mapping = {
["<Tab>"] = cmp.mapping.confirm({ select = true }),
["<CR>"] = cmp.mapping({
i = function(fallback)
if cmp.visible() and cmp.get_active_entry() then
cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false })
else
fallback()
end
end,
s = cmp.mapping.confirm({ select = true }),
c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }),
}),
},
})

11
lua/plugins/fzf-lua.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
"ibhagwan/fzf-lua",
opts = {
fzf_opts = {
["--layout"] = "default",
},
winopts = {
backdrop = 99
},
},
}

View File

@@ -1,6 +1,6 @@
return {
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
event = "VimEnter",
init = function()
vim.g.lualine_laststatus = vim.o.laststatus
if vim.fn.argc(-1) > 0 then
@@ -46,13 +46,13 @@ return {
return {
options = {
theme = bubbles_theme,
globalstatus = vim.o.laststatus == 3,
disabled_filetypes = { statusline = { "dashboard", "alpha", "ministarter" } },
-- globalstatus = vim.o.laststatus == 3,
-- disabled_filetypes = { statusline = { "dashboard", "alpha", "ministarter" } },
component_separators = "",
section_separators = { left = "", right = "" },
},
sections = {
lualine_a = {{ "mode", separator = { left = "" }, right_padding = 2 }},
lualine_a = { { "mode", separator = { left = "" }, right_padding = 2 } },
lualine_b = {
"branch",
{
@@ -102,7 +102,7 @@ return {
return package.loaded["noice"] and require("noice").api.status.mode.has()
end,
color = function()
return LazyVim.ui.fg("Constant")
return { fg = Snacks.util.color("Constant") }
end,
},
{

View File

@@ -1,8 +1,32 @@
return {
{
"glepnir/dashboard-nvim",
opts = function()
local logo = [[
"folke/snacks.nvim",
opts = {
--
-- notifications
--
notifier = {
border = "rounded",
zindex = 100,
ft = "markdown",
style = "fancy",
wo = {
winblend = 5,
wrap = false,
conceallevel = 2,
colorcolumn = "",
},
bo = { filetype = "snacks_notif" },
},
--
-- animations
--
animate = { },
--
-- dashboard
--
dashboard = {
preset = {
header = [[
@@ -28,58 +52,8 @@ return {
]]
logo = string.rep("\n", 3) .. logo .. "\n\n"
local opts = {
theme = "doom",
hide = {
-- this is taken care of by lualine
-- enabling this messes up the actual laststatus setting after loading a file
statusline = false,
},
config = {
header = vim.split(logo, "\n"),
-- stylua: ignore
center = {
{ action = 'lua LazyVim.pick()()', desc = " Find File", icon = "", key = "f" },
{ action = "ene | startinsert", desc = " New File", icon = "", key = "n" },
{ action = 'lua LazyVim.pick("oldfiles")()', desc = " Recent Files", icon = "", key = "r" },
{ action = 'lua LazyVim.pick("live_grep")()', desc = " Find Text", icon = "", key = "g" },
{ action = 'lua LazyVim.pick.config_files()()', desc = " Config", icon = "", key = "c" },
{ action = 'lua require("persistence").load()', desc = " Restore Session", icon = "", key = "s" },
{ action = "LazyExtras", desc = " Lazy Extras", icon = "", key = "x" },
{ action = "Lazy", desc = " Lazy", icon = "󰒲 ", key = "l" },
{ action = function() vim.api.nvim_input("<cmd>qa<cr>") end, desc = " Quit", icon = "", key = "q" },
},
footer = function()
local stats = require("lazy").stats()
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
return { "⚡ Neovim loaded " .. stats.loaded .. "/" .. stats.count .. " plugins in " .. ms .. "ms" }
end,
},
}
for _, button in ipairs(opts.config.center) do
button.desc = button.desc .. string.rep(" ", 43 - #button.desc)
button.key_format = " %s"
end
-- open dashboard after closing lazy
if vim.o.filetype == "lazy" then
vim.api.nvim_create_autocmd("WinClosed", {
pattern = tostring(vim.api.nvim_get_current_win()),
once = true,
callback = function()
vim.schedule(function()
vim.api.nvim_exec_autocmds("UIEnter", { group = "dashboard" })
end)
end,
})
end
return opts
end,
]],
},
},
},
}

View File

@@ -8,6 +8,7 @@ return {
win = {
no_overlap = false,
},
preset = 'modern'
},
},
}