💡 Add better plugin comments
- Add an identifying comment for each plugin
This commit is contained in:
@@ -41,3 +41,8 @@ end
|
|||||||
if vim.fn.filereadable(vim.fn.stdpath("config") .. "/.wakatime") ~= 1 then
|
if vim.fn.filereadable(vim.fn.stdpath("config") .. "/.wakatime") ~= 1 then
|
||||||
vim.fn.writefile({ "true" }, vim.fn.stdpath("config") .. "/.wakatime")
|
vim.fn.writefile({ "true" }, vim.fn.stdpath("config") .. "/.wakatime")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Check if the .hardtime file exists
|
||||||
|
if vim.fn.filereadable(vim.fn.stdpath("config") .. "/.hardtime") ~= 1 then
|
||||||
|
vim.fn.writefile({ "false" }, vim.fn.stdpath("config") .. "/.hardtime")
|
||||||
|
end
|
||||||
|
|||||||
+10
-6
@@ -3,14 +3,18 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ import = "lazyvim.plugins.extras.ui.edgy" },
|
{ -- Edgy
|
||||||
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
|
import = "lazyvim.plugins.extras.ui.edgy",
|
||||||
{
|
},
|
||||||
|
{ -- Mini-animate
|
||||||
|
import = "lazyvim.plugins.extras.ui.mini-animate",
|
||||||
|
},
|
||||||
|
{ -- Transparent
|
||||||
"xiyaowong/transparent.nvim",
|
"xiyaowong/transparent.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
{
|
{ -- Auto Dark Mode
|
||||||
"f-person/auto-dark-mode.nvim",
|
"f-person/auto-dark-mode.nvim",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
opts = {
|
opts = {
|
||||||
@@ -33,7 +37,7 @@ return {
|
|||||||
return not ssh
|
return not ssh
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Hlchunk
|
||||||
"shellRaining/hlchunk.nvim",
|
"shellRaining/hlchunk.nvim",
|
||||||
event = "BufEnter",
|
event = "BufEnter",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -113,7 +117,7 @@ return {
|
|||||||
require("hlchunk").setup(common_config)
|
require("hlchunk").setup(common_config)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Alternate
|
||||||
"ton/vim-alternate",
|
"ton/vim-alternate",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
},
|
},
|
||||||
|
|||||||
+16
-10
@@ -3,7 +3,7 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{ -- Codeium
|
||||||
import = "lazyvim.plugins.extras.coding.codeium",
|
import = "lazyvim.plugins.extras.coding.codeium",
|
||||||
cond = function()
|
cond = function()
|
||||||
if
|
if
|
||||||
@@ -14,7 +14,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Copilot
|
||||||
import = "lazyvim.plugins.extras.coding.copilot",
|
import = "lazyvim.plugins.extras.coding.copilot",
|
||||||
cond = function()
|
cond = function()
|
||||||
if
|
if
|
||||||
@@ -25,7 +25,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Tabnine
|
||||||
import = "lazyvim.plugins.extras.coding.tabnine",
|
import = "lazyvim.plugins.extras.coding.tabnine",
|
||||||
cond = function()
|
cond = function()
|
||||||
if
|
if
|
||||||
@@ -36,7 +36,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Minuet-AI
|
||||||
"milanglacier/minuet-ai.nvim",
|
"milanglacier/minuet-ai.nvim",
|
||||||
dependencies = { { "nvim-lua/plenary.nvim" }, { "hrsh7th/nvim-cmp" } },
|
dependencies = { { "nvim-lua/plenary.nvim" }, { "hrsh7th/nvim-cmp" } },
|
||||||
config = function()
|
config = function()
|
||||||
@@ -51,10 +51,16 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
{ -- Yanky
|
||||||
{ import = "lazyvim.plugins.extras.coding.mini-surround" },
|
import = "lazyvim.plugins.extras.coding.yanky",
|
||||||
{ import = "lazyvim.plugins.extras.vscode" },
|
},
|
||||||
{
|
{ -- Mini Surround
|
||||||
|
import = "lazyvim.plugins.extras.coding.mini-surround",
|
||||||
|
},
|
||||||
|
{ -- VSCode
|
||||||
|
import = "lazyvim.plugins.extras.vscode",
|
||||||
|
},
|
||||||
|
{ -- Mini Align
|
||||||
"echasnovski/mini.align",
|
"echasnovski/mini.align",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -103,14 +109,14 @@ return {
|
|||||||
"Dynge/gitmoji.nvim",
|
"Dynge/gitmoji.nvim",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{ -- Colorizer
|
||||||
"norcalli/nvim-colorizer.lua",
|
"norcalli/nvim-colorizer.lua",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("colorizer").setup()
|
require("colorizer").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Substitute
|
||||||
"gbprod/substitute.nvim",
|
"gbprod/substitute.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
opts = {
|
opts = {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
-- -------------------------------- DASHBOARD ----------------------------------
|
-- -------------------------------- DASHBOARD ----------------------------------
|
||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return { -- Dashboard
|
||||||
"nvimdev/dashboard-nvim",
|
"nvimdev/dashboard-nvim",
|
||||||
opts = function()
|
opts = function()
|
||||||
if vim.fn.winheight(0) >= 80 and vim.fn.winwidth(0) >= 80 then
|
if vim.fn.winheight(0) >= 80 and vim.fn.winwidth(0) >= 80 then
|
||||||
|
|||||||
@@ -3,6 +3,10 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ import = "lazyvim.plugins.extras.dap.core" },
|
{ -- DAP Core
|
||||||
{ import = "lazyvim.plugins.extras.dap.nlua" },
|
import = "lazyvim.plugins.extras.dap.core",
|
||||||
|
},
|
||||||
|
{ -- DAP Neovim Lua Adapter
|
||||||
|
import = "lazyvim.plugins.extras.dap.nlua",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
+23
-13
@@ -3,12 +3,22 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ import = "lazyvim.plugins.extras.editor.aerial" },
|
{ -- Aerial
|
||||||
{ import = "lazyvim.plugins.extras.editor.dial" },
|
import = "lazyvim.plugins.extras.editor.aerial",
|
||||||
{ import = "lazyvim.plugins.extras.editor.illuminate" },
|
},
|
||||||
{ import = "lazyvim.plugins.extras.editor.outline" },
|
{ -- Dial
|
||||||
{ import = "lazyvim.plugins.extras.editor.telescope" },
|
import = "lazyvim.plugins.extras.editor.dial",
|
||||||
{
|
},
|
||||||
|
{ -- Illuminate
|
||||||
|
import = "lazyvim.plugins.extras.editor.illuminate",
|
||||||
|
},
|
||||||
|
{ -- Outline
|
||||||
|
import = "lazyvim.plugins.extras.editor.outline",
|
||||||
|
},
|
||||||
|
{ -- Telescope
|
||||||
|
import = "lazyvim.plugins.extras.editor.telescope",
|
||||||
|
},
|
||||||
|
{ -- Which-Key
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
preset = "modern",
|
preset = "modern",
|
||||||
@@ -19,7 +29,7 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{ -- CodeWindow
|
||||||
"gorbit99/codewindow.nvim",
|
"gorbit99/codewindow.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -49,12 +59,12 @@ return {
|
|||||||
require("codewindow").apply_default_keybinds()
|
require("codewindow").apply_default_keybinds()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Persistence
|
||||||
"folke/persistence.nvim",
|
"folke/persistence.nvim",
|
||||||
event = "BufReadPre",
|
event = "BufReadPre",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
{ -- Remote-nvim
|
||||||
"amitds1997/remote-nvim.nvim",
|
"amitds1997/remote-nvim.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
version = "*", -- Pin to GitHub releases
|
version = "*", -- Pin to GitHub releases
|
||||||
@@ -65,7 +75,7 @@ return {
|
|||||||
},
|
},
|
||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
{
|
{ -- DeadColumn
|
||||||
"Bekaboo/deadcolumn.nvim",
|
"Bekaboo/deadcolumn.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -94,16 +104,16 @@ return {
|
|||||||
vim.cmd(":set colorcolumn=120")
|
vim.cmd(":set colorcolumn=120")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Precognition
|
||||||
"tris203/precognition.nvim",
|
"tris203/precognition.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
},
|
},
|
||||||
{
|
{ -- Zen Mode
|
||||||
"folke/zen-mode.nvim",
|
"folke/zen-mode.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
{ -- SmoothCursor
|
||||||
"gen740/SmoothCursor.nvim",
|
"gen740/SmoothCursor.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
|
|||||||
+31
-12
@@ -3,22 +3,41 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
{ -- JSON
|
||||||
{ import = "lazyvim.plugins.extras.lang.markdown" },
|
import = "lazyvim.plugins.extras.lang.json",
|
||||||
{ import = "lazyvim.plugins.extras.lang.toml" },
|
},
|
||||||
{ import = "lazyvim.plugins.extras.lang.git" },
|
{ -- Markdown
|
||||||
{ import = "lazyvim.plugins.extras.lang.python" },
|
import = "lazyvim.plugins.extras.lang.markdown",
|
||||||
{ import = "lazyvim.plugins.extras.lang.toml" },
|
},
|
||||||
{
|
{ -- Toml
|
||||||
|
import = "lazyvim.plugins.extras.lang.toml",
|
||||||
|
},
|
||||||
|
{ -- Git
|
||||||
|
import = "lazyvim.plugins.extras.lang.git",
|
||||||
|
},
|
||||||
|
{ -- Python
|
||||||
|
import = "lazyvim.plugins.extras.lang.python",
|
||||||
|
},
|
||||||
|
{ -- Yaml
|
||||||
|
import = "lazyvim.plugins.extras.lang.yaml",
|
||||||
|
},
|
||||||
|
{ -- clangd
|
||||||
|
import = "lazyvim.plugins.extras.lang.clangd",
|
||||||
|
},
|
||||||
|
{ -- cmake
|
||||||
|
import = "lazyvim.plugins.extras.lang.cmake",
|
||||||
|
},
|
||||||
|
{ -- Docker
|
||||||
|
import = "lazyvim.plugins.extras.lang.docker",
|
||||||
|
},
|
||||||
|
{ -- Java
|
||||||
|
import = "lazyvim.plugins.extras.lang.java",
|
||||||
|
},
|
||||||
|
{ -- Markdown-Preview
|
||||||
"iamcco/markdown-preview.nvim",
|
"iamcco/markdown-preview.nvim",
|
||||||
build = "cd app && yarn install",
|
build = "cd app && yarn install",
|
||||||
init = function()
|
init = function()
|
||||||
vim.g.mkdp_filetypes = { "markdown" }
|
vim.g.mkdp_filetypes = { "markdown" }
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ import = "lazyvim.plugins.extras.lang.yaml" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lang.clangd" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lang.cmake" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lang.docker" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lang.java" },
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ package.path = package.path
|
|||||||
.. "/.luarocks/share/lua/5.1/?.lua"
|
.. "/.luarocks/share/lua/5.1/?.lua"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{ -- ToggleTerm
|
||||||
"akinsho/toggleterm.nvim",
|
"akinsho/toggleterm.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -52,7 +52,7 @@ return {
|
|||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Kitty-Navigator
|
||||||
"MunsMan/kitty-navigator.nvim",
|
"MunsMan/kitty-navigator.nvim",
|
||||||
build = {
|
build = {
|
||||||
"cp navigate_kitty.py ~/.config/kitty",
|
"cp navigate_kitty.py ~/.config/kitty",
|
||||||
@@ -64,7 +64,7 @@ return {
|
|||||||
return kit ~= nil
|
return kit ~= nil
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Kitty-Runner
|
||||||
"jghauser/kitty-runner.nvim",
|
"jghauser/kitty-runner.nvim",
|
||||||
cond = function() -- Using Kitty
|
cond = function() -- Using Kitty
|
||||||
local term = os.getenv("TERM") or ""
|
local term = os.getenv("TERM") or ""
|
||||||
@@ -72,7 +72,7 @@ return {
|
|||||||
return kit ~= nil
|
return kit ~= nil
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Kitty-Scrollback
|
||||||
"mikesmithgh/kitty-scrollback.nvim",
|
"mikesmithgh/kitty-scrollback.nvim",
|
||||||
enabled = true,
|
enabled = true,
|
||||||
lazy = true,
|
lazy = true,
|
||||||
@@ -85,7 +85,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Image Renderer
|
||||||
"3rd/image.nvim",
|
"3rd/image.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("image").setup()
|
require("image").setup()
|
||||||
@@ -108,7 +108,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- WezTerm
|
||||||
"willothy/wezterm.nvim",
|
"willothy/wezterm.nvim",
|
||||||
config = true,
|
config = true,
|
||||||
cond = function() -- Using WezTerm
|
cond = function() -- Using WezTerm
|
||||||
@@ -116,7 +116,7 @@ return {
|
|||||||
return wterm and string.find(wterm, "WezTerm")
|
return wterm and string.find(wterm, "WezTerm")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Tmux
|
||||||
"aserowy/tmux.nvim",
|
"aserowy/tmux.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
return require("tmux").setup()
|
return require("tmux").setup()
|
||||||
@@ -134,7 +134,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Navigator (wezterm/tmux)
|
||||||
"numToStr/Navigator.nvim",
|
"numToStr/Navigator.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("Navigator").setup()
|
require("Navigator").setup()
|
||||||
|
|||||||
+16
-16
@@ -3,55 +3,55 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{ -- Tokyonight
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
lazy = false, -- Override
|
lazy = false, -- Override
|
||||||
},
|
},
|
||||||
{
|
{ -- Catppuccin
|
||||||
"catppuccin/nvim",
|
"catppuccin/nvim",
|
||||||
lazy = false, -- Override
|
lazy = false, -- Override
|
||||||
},
|
},
|
||||||
{
|
{ -- Ayu
|
||||||
"Shatur/neovim-ayu",
|
"Shatur/neovim-ayu",
|
||||||
},
|
},
|
||||||
{
|
{ -- Dracula
|
||||||
"Mofiqul/dracula.nvim",
|
"Mofiqul/dracula.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Eldritch
|
||||||
"eldritch-theme/eldritch.nvim",
|
"eldritch-theme/eldritch.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Github-theme
|
||||||
"projekt0n/github-nvim-theme",
|
"projekt0n/github-nvim-theme",
|
||||||
},
|
},
|
||||||
{
|
{ -- Gruvbox
|
||||||
"ellisonleao/gruvbox.nvim",
|
"ellisonleao/gruvbox.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Kanagawa
|
||||||
"rebelot/kanagawa.nvim",
|
"rebelot/kanagawa.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Monochrome
|
||||||
"kdheepak/monochrome.nvim",
|
"kdheepak/monochrome.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- NeoFusion
|
||||||
"diegoulloao/neofusion.nvim",
|
"diegoulloao/neofusion.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Nord
|
||||||
"shaunsingh/nord.nvim",
|
"shaunsingh/nord.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- One Dark Pro
|
||||||
"olimorris/onedarkpro.nvim",
|
"olimorris/onedarkpro.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Oxocarbon
|
||||||
"nyoom-engineering/oxocarbon.nvim",
|
"nyoom-engineering/oxocarbon.nvim",
|
||||||
},
|
},
|
||||||
{
|
{ -- Paper
|
||||||
"https://gitlab.com/yorickpeterse/vim-paper.git",
|
"https://gitlab.com/yorickpeterse/vim-paper.git",
|
||||||
},
|
},
|
||||||
{
|
{ -- Rose-Pine
|
||||||
"rose-pine/neovim",
|
"rose-pine/neovim",
|
||||||
name = "rose-pine",
|
name = "rose-pine",
|
||||||
},
|
},
|
||||||
{
|
{ -- Umbra
|
||||||
"LZDQ/umbra.nvim",
|
"LZDQ/umbra.nvim",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-17
@@ -3,15 +3,23 @@
|
|||||||
-- -----------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{ -- Project management
|
||||||
import = "lazyvim.plugins.extras.util.project",
|
import = "lazyvim.plugins.extras.util.project",
|
||||||
opts = { manual_mode = false },
|
opts = { manual_mode = false },
|
||||||
},
|
},
|
||||||
{ import = "lazyvim.plugins.extras.util.chezmoi" },
|
{ -- Chezmoi
|
||||||
{ import = "lazyvim.plugins.extras.util.dot" },
|
import = "lazyvim.plugins.extras.util.chezmoi",
|
||||||
{ import = "lazyvim.plugins.extras.util.gitui" },
|
},
|
||||||
{ import = "lazyvim.plugins.extras.util.octo" },
|
{ -- Dotfiles plugins
|
||||||
{
|
import = "lazyvim.plugins.extras.util.dot",
|
||||||
|
},
|
||||||
|
{ -- Git UI
|
||||||
|
import = "lazyvim.plugins.extras.util.gitui",
|
||||||
|
},
|
||||||
|
{ -- Octo plugin
|
||||||
|
import = "lazyvim.plugins.extras.util.octo",
|
||||||
|
},
|
||||||
|
{ -- Wakatime
|
||||||
"wakatime/vim-wakatime",
|
"wakatime/vim-wakatime",
|
||||||
cond = function()
|
cond = function()
|
||||||
if
|
if
|
||||||
@@ -22,7 +30,7 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Link following
|
||||||
"chrishrb/gx.nvim",
|
"chrishrb/gx.nvim",
|
||||||
cmd = { "Browse" },
|
cmd = { "Browse" },
|
||||||
init = function()
|
init = function()
|
||||||
@@ -31,27 +39,27 @@ return {
|
|||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
{
|
{ -- Auto-save
|
||||||
"Pocco81/auto-save.nvim",
|
"Pocco81/auto-save.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("auto-save").setup({})
|
require("auto-save").setup({})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- User is bored
|
||||||
"mikesmithgh/ugbi",
|
"mikesmithgh/ugbi",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
},
|
},
|
||||||
{
|
{ -- Ripgrep substitute
|
||||||
"chrisgrieser/nvim-rip-substitute",
|
"chrisgrieser/nvim-rip-substitute",
|
||||||
cmd = "RipSubstitute",
|
cmd = "RipSubstitute",
|
||||||
},
|
},
|
||||||
{
|
{ -- Gist Tools
|
||||||
"Rawnly/gist.nvim",
|
"Rawnly/gist.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
|
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
|
||||||
config = true,
|
config = true,
|
||||||
},
|
},
|
||||||
{
|
{ -- Unception
|
||||||
"samjwill/nvim-unception",
|
"samjwill/nvim-unception",
|
||||||
init = function()
|
init = function()
|
||||||
vim.g.unception_block_while_host_edits = true
|
vim.g.unception_block_while_host_edits = true
|
||||||
@@ -64,7 +72,7 @@ return {
|
|||||||
require("icon-picker").setup({ disable_legacy_commands = true })
|
require("icon-picker").setup({ disable_legacy_commands = true })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- LazyGit
|
||||||
"kdheepak/lazygit.nvim",
|
"kdheepak/lazygit.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
cmd = {
|
cmd = {
|
||||||
@@ -78,7 +86,7 @@ return {
|
|||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{ -- Codesnap
|
||||||
"mistricky/codesnap.nvim",
|
"mistricky/codesnap.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
build = "make",
|
build = "make",
|
||||||
@@ -92,22 +100,35 @@ return {
|
|||||||
code_font_size = 12,
|
code_font_size = 12,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{ -- Kulala
|
||||||
"mistweaverco/kulala.nvim",
|
"mistweaverco/kulala.nvim",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("kulala").setup()
|
require("kulala").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{ -- Fugitive
|
||||||
"tpope/vim-fugitive",
|
"tpope/vim-fugitive",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
dependencies = { "tpope/vim-rhubarb" },
|
dependencies = { "tpope/vim-rhubarb" },
|
||||||
},
|
},
|
||||||
{
|
{ -- Thanks/github-stars
|
||||||
"jsongerber/thanks.nvim",
|
"jsongerber/thanks.nvim",
|
||||||
config = {
|
config = {
|
||||||
star_on_install = false,
|
star_on_install = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{ -- Hardtime
|
||||||
|
"m4xshen/hardtime.nvim",
|
||||||
|
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||||
|
opts = {},
|
||||||
|
cond = function()
|
||||||
|
if
|
||||||
|
vim.fn.readfile(vim.fn.stdpath("config") .. "/.hardtime")[1]
|
||||||
|
== "true"
|
||||||
|
then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user