Use nvim kickstarter over lazyvim
This commit is contained in:
parent
d367331da0
commit
3f9f750476
54 changed files with 1764 additions and 5 deletions
3
home/dot_config/lvim/lua/config/autocmds.lua
Normal file
3
home/dot_config/lvim/lua/config/autocmds.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- Autocmds are automatically loaded on the VeryLazy event
|
||||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
||||
-- Add any additional autocmds here
|
||||
6
home/dot_config/lvim/lua/config/keymaps.lua
Normal file
6
home/dot_config/lvim/lua/config/keymaps.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- Keymaps are automatically loaded on the VeryLazy event
|
||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||
-- Add any additional keymaps here
|
||||
--
|
||||
|
||||
vim.keymap.set("n", "<C-l>", ":noh<CR>")
|
||||
53
home/dot_config/lvim/lua/config/lazy.lua
Normal file
53
home/dot_config/lvim/lua/config/lazy.lua
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
-- add LazyVim and import its plugins
|
||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||
-- import/override with your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
defaults = {
|
||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
|
||||
lazy = false,
|
||||
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
|
||||
-- have outdated releases, which may break your Neovim install.
|
||||
version = false, -- always use the latest git commit
|
||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||
},
|
||||
install = { colorscheme = { "solarized" } },
|
||||
checker = {
|
||||
enabled = true, -- check for plugin updates periodically
|
||||
notify = false, -- notify on update
|
||||
}, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
-- disable some rtp plugins
|
||||
disabled_plugins = {
|
||||
"gzip",
|
||||
-- "matchit",
|
||||
-- "matchparen",
|
||||
-- "netrwPlugin",
|
||||
"tarPlugin",
|
||||
"tohtml",
|
||||
"tutor",
|
||||
"zipPlugin",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
30
home/dot_config/lvim/lua/config/options.lua
Normal file
30
home/dot_config/lvim/lua/config/options.lua
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
-- Options are automatically loaded before lazy.nvim startup
|
||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
-- Add any additional options here
|
||||
|
||||
vim.lsp.enable("ty")
|
||||
|
||||
vim.g.lazyvim_python_lsp = ""
|
||||
|
||||
--- Whitespace ---
|
||||
vim.o.expandtab = true
|
||||
vim.o.smartindent = true
|
||||
vim.o.tabstop = 4
|
||||
vim.o.shiftwidth = 4
|
||||
|
||||
--- Line numbering ---
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.number = true
|
||||
|
||||
--- Ruler for line length ---
|
||||
vim.o.colorcolumn = "80,100"
|
||||
|
||||
--- Show certain characters ---
|
||||
vim.opt.listchars = {
|
||||
trail = "•",
|
||||
extends = ">",
|
||||
precedes = "<",
|
||||
nbsp = "␣",
|
||||
tab = "→,",
|
||||
}
|
||||
vim.opt.list = true
|
||||
13
home/dot_config/lvim/lua/plugins/animate.lua
Normal file
13
home/dot_config/lvim/lua/plugins/animate.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
{
|
||||
"echasnovski/mini.animate",
|
||||
opts = {
|
||||
open = {
|
||||
enable = false,
|
||||
},
|
||||
close = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
13
home/dot_config/lvim/lua/plugins/colorscheme.lua
Normal file
13
home/dot_config/lvim/lua/plugins/colorscheme.lua
Normal 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,
|
||||
}
|
||||
26
home/dot_config/lvim/lua/plugins/conflict-markers.lua
Normal file
26
home/dot_config/lvim/lua/plugins/conflict-markers.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
||||
10
home/dot_config/lvim/lua/plugins/copy-reference.lua
Normal file
10
home/dot_config/lvim/lua/plugins/copy-reference.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
"ranelpadon/python-copy-reference.vim",
|
||||
keys = {
|
||||
{
|
||||
"<leader>rd",
|
||||
"<cmd>PythonCopyReferenceDotted <CR>",
|
||||
desc = "Copy Dotted Reference",
|
||||
},
|
||||
},
|
||||
}
|
||||
17
home/dot_config/lvim/lua/plugins/digraph.lua
Normal file
17
home/dot_config/lvim/lua/plugins/digraph.lua
Normal 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,
|
||||
}
|
||||
3
home/dot_config/lvim/lua/plugins/disabled.lua
Normal file
3
home/dot_config/lvim/lua/plugins/disabled.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
{ "akinsho/toggleterm.nvim", enabled = false },
|
||||
}
|
||||
193
home/dot_config/lvim/lua/plugins/example.lua
Normal file
193
home/dot_config/lvim/lua/plugins/example.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
3
home/dot_config/lvim/lua/plugins/flash.lua
Normal file
3
home/dot_config/lvim/lua/plugins/flash.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
{ "folke/flash.nvim", enabled = false },
|
||||
}
|
||||
16
home/dot_config/lvim/lua/plugins/formatters.lua
Normal file
16
home/dot_config/lvim/lua/plugins/formatters.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"stevearc/conform.nvim",
|
||||
optional = true,
|
||||
opts = {
|
||||
formatters_by_ft = {
|
||||
["htmldjango"] = { "djlint" },
|
||||
},
|
||||
formatters = {
|
||||
djlint = {
|
||||
args = { "--reformat", "--profile=django", "-" },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
13
home/dot_config/lvim/lua/plugins/git-blame.lua
Normal file
13
home/dot_config/lvim/lua/plugins/git-blame.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
"FabijanZulj/blame.nvim",
|
||||
opts = {
|
||||
blame_options = { "-w" },
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>gb",
|
||||
"<cmd>BlameToggle<cr>",
|
||||
desc = "Toggle git blame",
|
||||
},
|
||||
},
|
||||
}
|
||||
8
home/dot_config/lvim/lua/plugins/linters.lua
Normal file
8
home/dot_config/lvim/lua/plugins/linters.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
{
|
||||
"mfussenegger/nvim-lint",
|
||||
opts = {
|
||||
linters_by_ft = { htmldjango = { "djlint" } },
|
||||
},
|
||||
},
|
||||
}
|
||||
27
home/dot_config/lvim/lua/plugins/lsp.lua
Normal file
27
home/dot_config/lvim/lua/plugins/lsp.lua
Normal 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" },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
9
home/dot_config/lvim/lua/plugins/notify.lua
Normal file
9
home/dot_config/lvim/lua/plugins/notify.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
opts = {
|
||||
timeout = 3000,
|
||||
stages = "slide",
|
||||
},
|
||||
},
|
||||
}
|
||||
5
home/dot_config/lvim/lua/plugins/plenary.lua
Normal file
5
home/dot_config/lvim/lua/plugins/plenary.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
{
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
}
|
||||
1
home/dot_config/lvim/lua/plugins/rainbow-delimiter.lua
Normal file
1
home/dot_config/lvim/lua/plugins/rainbow-delimiter.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
return { "https://gitlab.com/HiPhish/rainbow-delimiters.nvim" }
|
||||
18
home/dot_config/lvim/lua/plugins/snacks-gitbrowse.lua
Normal file
18
home/dot_config/lvim/lua/plugins/snacks-gitbrowse.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
69
home/dot_config/lvim/lua/plugins/symbol-usage.lua
Normal file
69
home/dot_config/lvim/lua/plugins/symbol-usage.lua
Normal 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,
|
||||
}
|
||||
37
home/dot_config/lvim/lua/plugins/time-machine.lua
Normal file
37
home/dot_config/lvim/lua/plugins/time-machine.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
||||
10
home/dot_config/lvim/lua/plugins/zk.lua
Normal file
10
home/dot_config/lvim/lua/plugins/zk.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
{
|
||||
"zk-org/zk-nvim",
|
||||
config = function()
|
||||
require("zk").setup({
|
||||
-- See Setup section below
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue