Use nvim kickstarter over lazyvim

This commit is contained in:
Maximilian Friedersdorff 2025-09-30 22:08:24 +01:00
parent d367331da0
commit 3f9f750476
54 changed files with 1764 additions and 5 deletions

View file

@ -0,0 +1,13 @@
return {
{
"echasnovski/mini.animate",
opts = {
open = {
enable = false,
},
close = {
enable = false,
},
},
},
}

View file

@ -0,0 +1,13 @@
return {
"maxmx03/solarized.nvim",
lazy = false,
priority = 1000,
---@type solarized.config
opts = { palette = "selenized", transparent = { enabled = true, normal = true } },
config = function(_, opts)
vim.o.termguicolors = true
vim.o.background = "dark"
require("solarized").setup(opts)
vim.cmd.colorscheme("solarized")
end,
}

View file

@ -0,0 +1,26 @@
return {
"akinsho/git-conflict.nvim",
lazy = false,
opts = {
default_mappings = {
ours = "<leader>ho",
theirs = "<leader>ht",
none = "<leader>h0",
both = "<leader>hb",
next = "]x",
prev = "[x",
},
},
keys = {
{
"<leader>gx",
"<cmd>GitConflictListQf<cr>",
desc = "List Conflicts",
},
{
"<leader>gr",
"<cmd>GitConflictRefresh<cr>",
desc = "Refresh Conflicts",
},
},
}

View file

@ -0,0 +1,10 @@
return {
"ranelpadon/python-copy-reference.vim",
keys = {
{
"<leader>rd",
"<cmd>PythonCopyReferenceDotted <CR>",
desc = "Copy Dotted Reference",
},
},
}

View file

@ -0,0 +1,17 @@
return {
"srackham/digraph-picker.nvim",
dependencies = {
"nvim-telescope/telescope.nvim",
},
version = "*", -- Install latest tagged version
config = function()
local picker = require("digraph-picker")
picker.setup()
vim.keymap.set(
{ "i", "n" },
"<C-k><C-k>",
picker.insert_digraph,
{ noremap = true, silent = true, desc = "Digraph picker" }
)
end,
}

View file

@ -0,0 +1,3 @@
return {
{ "akinsho/toggleterm.nvim", enabled = false },
}

View file

@ -0,0 +1,193 @@
-- since this is just an example spec, don't actually load anything here and return an empty spec
-- stylua: ignore
if true then return {} end
-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
--
-- In your plugin files, you can:
-- * add extra plugins
-- * disable/enabled LazyVim plugins
-- * override the configuration of LazyVim plugins
return {
-- add gruvbox
{ "ellisonleao/gruvbox.nvim" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
},
-- change trouble config
{
"folke/trouble.nvim",
-- opts will be merged with the parent spec
opts = { use_diagnostic_signs = true },
},
-- disable trouble
{ "folke/trouble.nvim", enabled = false },
-- override nvim-cmp and add cmp-emoji
{
"hrsh7th/nvim-cmp",
dependencies = { "hrsh7th/cmp-emoji" },
---@param opts cmp.ConfigSchema
opts = function(_, opts)
table.insert(opts.sources, { name = "emoji" })
end,
},
-- change some telescope options and a keymap to browse plugin files
{
"nvim-telescope/telescope.nvim",
keys = {
-- add a keymap to browse plugin files
-- stylua: ignore
{
"<leader>fp",
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end,
desc = "Find Plugin File",
},
},
-- change some options
opts = {
defaults = {
layout_strategy = "horizontal",
layout_config = { prompt_position = "top" },
sorting_strategy = "ascending",
winblend = 0,
},
},
},
-- add pyright to lspconfig
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
pyright = {},
},
},
},
-- add tsserver and setup with typescript.nvim instead of lspconfig
{
"neovim/nvim-lspconfig",
dependencies = {
"jose-elias-alvarez/typescript.nvim",
init = function()
require("lazyvim.util").lsp.on_attach(function(_, buffer)
-- stylua: ignore
vim.keymap.set( "n", "<leader>co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" })
vim.keymap.set("n", "<leader>cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer })
end)
end,
},
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- tsserver will be automatically installed with mason and loaded with lspconfig
tsserver = {},
},
-- you can do any additional lsp server setup here
-- return true if you don't want this server to be setup with lspconfig
---@type table<string, fun(server:string, opts:_.lspconfig.options):boolean?>
setup = {
-- example to setup with typescript.nvim
tsserver = function(_, opts)
require("typescript").setup({ server = opts })
return true
end,
-- Specify * to use this function as a fallback for any server
-- ["*"] = function(server, opts) end,
},
},
},
-- for typescript, LazyVim also includes extra specs to properly setup lspconfig,
-- treesitter, mason and typescript.nvim. So instead of the above, you can use:
{ import = "lazyvim.plugins.extras.lang.typescript" },
-- add more treesitter parsers
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"bash",
"html",
"javascript",
"json",
"lua",
"markdown",
"markdown_inline",
"python",
"query",
"regex",
"tsx",
"typescript",
"vim",
"yaml",
},
},
},
-- since `vim.tbl_deep_extend`, can only merge tables and not lists, the code above
-- would overwrite `ensure_installed` with the new value.
-- If you'd rather extend the default config, use the code below instead:
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
-- add tsx and treesitter
vim.list_extend(opts.ensure_installed, {
"tsx",
"typescript",
})
end,
},
-- the opts function can also be used to change the default opts:
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function(_, opts)
table.insert(opts.sections.lualine_x, "😄")
end,
},
-- or you can return new options to override all the defaults
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
opts = function()
return {
--[[add your custom lualine config here]]
}
end,
},
-- use mini.starter instead of alpha
{ import = "lazyvim.plugins.extras.ui.mini-starter" },
-- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
{ import = "lazyvim.plugins.extras.lang.json" },
-- add any tools you want to have installed below
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"stylua",
"shellcheck",
"shfmt",
"flake8",
},
},
},
}

View file

@ -0,0 +1,3 @@
return {
{ "folke/flash.nvim", enabled = false },
}

View file

@ -0,0 +1,16 @@
return {
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
["htmldjango"] = { "djlint" },
},
formatters = {
djlint = {
args = { "--reformat", "--profile=django", "-" },
},
},
},
},
}

View file

@ -0,0 +1,13 @@
return {
"FabijanZulj/blame.nvim",
opts = {
blame_options = { "-w" },
},
keys = {
{
"<leader>gb",
"<cmd>BlameToggle<cr>",
desc = "Toggle git blame",
},
},
}

View file

@ -0,0 +1,8 @@
return {
{
"mfussenegger/nvim-lint",
opts = {
linters_by_ft = { htmldjango = { "djlint" } },
},
},
}

View file

@ -0,0 +1,27 @@
-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
ty = {
enabled = true,
settings = {
ty = {
experimental = {
rename = true,
},
},
},
},
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = { "ty" },
},
},
},
}

View file

@ -0,0 +1,9 @@
return {
{
"rcarriga/nvim-notify",
opts = {
timeout = 3000,
stages = "slide",
},
},
}

View file

@ -0,0 +1,5 @@
return {
{
"nvim-lua/plenary.nvim",
},
}

View file

@ -0,0 +1 @@
return { "https://gitlab.com/HiPhish/rainbow-delimiters.nvim" }

View file

@ -0,0 +1,18 @@
return {
{
"folke/snacks.nvim",
opts = {
gitbrowse = {
config = function(opts, defaults)
opts.url_patterns["bitbucket%.org"] = {
branch = "/src/{branch}",
file = "/src/{branch}/{file}#lines-{line_start}:{line_end}",
permalink = "/src/{commit}/{file}#lines-{line_start}:{line_end}",
commit = "/commits/{commit}",
}
opts.what = "permalink"
end,
},
},
},
}

View file

@ -0,0 +1,69 @@
return {
"Wansmer/symbol-usage.nvim",
event = "LspAttach", -- need run before LspAttach if you use nvim 0.9. On 0.10 use 'LspAttach'
config = function()
local function h(name)
return vim.api.nvim_get_hl(0, { name = name })
end
-- hl-groups can have any name
vim.api.nvim_set_hl(0, "SymbolUsageRounding", { fg = h("CursorLine").bg, italic = true })
vim.api.nvim_set_hl(0, "SymbolUsageContent", { bg = h("CursorLine").bg, fg = h("Comment").fg, italic = true })
vim.api.nvim_set_hl(0, "SymbolUsageRef", { fg = h("Function").fg, bg = h("CursorLine").bg, italic = true })
vim.api.nvim_set_hl(0, "SymbolUsageDef", { fg = h("Type").fg, bg = h("CursorLine").bg, italic = true })
vim.api.nvim_set_hl(0, "SymbolUsageImpl", { fg = h("@keyword").fg, bg = h("CursorLine").bg, italic = true })
local function text_format(symbol)
local res = {}
local round_start = { "", "SymbolUsageRounding" }
local round_end = { "", "SymbolUsageRounding" }
-- Indicator that shows if there are any other symbols in the same line
local stacked_functions_content = symbol.stacked_count > 0 and ("+%s"):format(symbol.stacked_count) or ""
if symbol.references then
local usage = symbol.references <= 1 and "usage" or "usages"
local num = symbol.references == 0 and "no" or symbol.references
table.insert(res, round_start)
table.insert(res, { "󰌹 ", "SymbolUsageRef" })
table.insert(res, { ("%s %s"):format(num, usage), "SymbolUsageContent" })
table.insert(res, round_end)
end
if symbol.definition then
if #res > 0 then
table.insert(res, { " ", "NonText" })
end
table.insert(res, round_start)
table.insert(res, { "󰳽 ", "SymbolUsageDef" })
table.insert(res, { symbol.definition .. " defs", "SymbolUsageContent" })
table.insert(res, round_end)
end
if symbol.implementation then
if #res > 0 then
table.insert(res, { " ", "NonText" })
end
table.insert(res, round_start)
table.insert(res, { "󰡱 ", "SymbolUsageImpl" })
table.insert(res, { symbol.implementation .. " impls", "SymbolUsageContent" })
table.insert(res, round_end)
end
if stacked_functions_content ~= "" then
if #res > 0 then
table.insert(res, { " ", "NonText" })
end
table.insert(res, round_start)
table.insert(res, { "", "SymbolUsageImpl" })
table.insert(res, { stacked_functions_content, "SymbolUsageContent" })
table.insert(res, round_end)
end
return res
end
require("symbol-usage").setup({ text_format = text_format })
end,
}

View file

@ -0,0 +1,37 @@
-- time-machine.lua
return {
"y3owk1n/time-machine.nvim",
version = "*", -- remove this if you want to use the `main` branch
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
keys = {
{
"<leader>t",
"",
desc = "Time Machine",
},
{
"<leader>tt",
"<cmd>TimeMachineToggle<cr>",
desc = "[Time Machine] Toggle Tree",
},
{
"<leader>tx",
"<cmd>TimeMachinePurgeCurrent<cr>",
desc = "[Time Machine] Purge current",
},
{
"<leader>tX",
"<cmd>TimeMachinePurgeAll<cr>",
desc = "[Time Machine] Purge all",
},
{
"<leader>tl",
"<cmd>TimeMachineLogShow<cr>",
desc = "[Time Machine] Show log",
},
},
}

View file

@ -0,0 +1,10 @@
return {
{
"zk-org/zk-nvim",
config = function()
require("zk").setup({
-- See Setup section below
})
end,
},
}