Files
neovim-config/lua/plugins/util.lua
T
rootiest c1dd778e47 Checks for .settings files
- Checks for missing files and creates them
- More efficient handling of those settings
2024-07-18 14:14:08 -04:00

107 lines
2.4 KiB
Lua

-- -----------------------------------------------------------------------------
-- -------------------------------- UTILITIES ----------------------------------
-- -----------------------------------------------------------------------------
return {
{
import = "lazyvim.plugins.extras.util.project",
opts = { manual_mode = false },
},
{ import = "lazyvim.plugins.extras.util.chezmoi" },
{ import = "lazyvim.plugins.extras.util.dot" },
{ import = "lazyvim.plugins.extras.util.gitui" },
{ import = "lazyvim.plugins.extras.util.octo" },
{
"wakatime/vim-wakatime",
cond = function()
if
vim.fn.readfile(vim.fn.stdpath("config") .. "/.wakatime")[1]
== "true"
then
return true
end
end,
},
{
"chrishrb/gx.nvim",
cmd = { "Browse" },
init = function()
vim.g.netrw_nogx = 1
end,
dependencies = { "nvim-lua/plenary.nvim" },
config = true,
},
{
"Pocco81/auto-save.nvim",
config = function()
require("auto-save").setup({})
end,
},
{
"mikesmithgh/ugbi",
event = "VeryLazy",
},
{
"chrisgrieser/nvim-rip-substitute",
cmd = "RipSubstitute",
},
{
"Rawnly/gist.nvim",
event = "VeryLazy",
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
config = true,
},
{
"samjwill/nvim-unception",
init = function()
vim.g.unception_block_while_host_edits = true
end,
},
{ -- 🍎 Icon Picker
"ziontee113/icon-picker.nvim",
event = "InsertEnter",
config = function()
require("icon-picker").setup({ disable_legacy_commands = true })
end,
},
{
"kdheepak/lazygit.nvim",
event = "VeryLazy",
cmd = {
"LazyGit",
"LazyGitConfig",
"LazyGitCurrentFile",
"LazyGitFilter",
"LazyGitFilterCurrentFile",
},
dependencies = {
"nvim-lua/plenary.nvim",
},
},
{
"mistricky/codesnap.nvim",
event = "InsertEnter",
build = "make",
opts = {
save_path = "~/Pictures/Screenshots/",
has_breadcrumbs = true,
show_workspace = true,
bg_theme = "default",
watermark = "Rootiest Snippets",
code_font_family = "Iosevka NF",
code_font_size = 12,
},
},
{
"mistweaverco/kulala.nvim",
event = "InsertEnter",
config = function()
require("kulala").setup()
end,
},
{
"jsongerber/thanks.nvim",
config = true,
},
}