more stuff

This commit is contained in:
Barrett Ruth 2026-02-24 12:10:16 -05:00
parent dce4e28c82
commit 8cda45d29c
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
7 changed files with 42 additions and 23 deletions

View file

@ -5,9 +5,9 @@ return {
'Kaiser-Yang/blink-cmp-git',
'folke/lazydev.nvim',
'bydlw98/blink-cmp-env',
{ 'barrettruth/blink-cmp-ssh', dir = '~/dev/blink-cmp-ssh' },
{ 'barrettruth/blink-cmp-tmux', dir = '~/dev/blink-cmp-tmux' },
{ 'barrettruth/blink-cmp-ghostty', dir = '~/dev/blink-cmp-ghostty' },
'barrettruth/blink-cmp-ssh',
'barrettruth/blink-cmp-tmux',
'barrettruth/blink-cmp-ghostty'
},
---@module 'blink.cmp'
---@type blink.cmp.Config

View file

@ -128,7 +128,6 @@ end
return {
'barrettruth/cp.nvim',
dir = '~/dev/cp.nvim',
cmd = 'CP',
keys = {
{ '<leader>ce', '<cmd>CP edit<cr>' },

View file

@ -159,7 +159,7 @@ return {
cmd = { 'Git', 'G', 'Gread', 'Gwrite', 'Gdiffsplit', 'Gvdiffsplit' },
},
{
dir = '~/dev/diffs.nvim',
'barrettruth/diffs.nvim',
enabled = true,
init = function()
vim.g.diffs = {

View file

@ -1,7 +1,7 @@
return {
'nvimdev/guard.nvim',
dependencies = {
{ dir = '~/dev/guard-collection', 'nvimdev/guard-collection' },
'nvimdev/guard-collection',
},
init = function()
vim.g.guard_config = {

View file

@ -41,9 +41,18 @@ end
local git_status = new_git_status()
return {
{
'barrettruth/live-server.nvim',
enabled = false,
init = function()
vim.g.live_server = {
debug = false
}
end,
keys = { { '<leader>l', '<cmd>LiveServerToggle<cr>' } },
},
{
'barrettruth/midnight.nvim',
dir = '~/dev/midnight.nvim',
config = function()
vim.cmd.colorscheme('midnight')
end,
@ -51,7 +60,7 @@ return {
{
'barrettruth/nonicons.nvim',
dir = '~/dev/nonicons.nvim',
enabled = false,
enabled = true,
lazy = false,
dependencies = {
'nvim-tree/nvim-web-devicons',
@ -269,8 +278,8 @@ return {
event = 'BufReadPre',
},
{
'stevearc/oil.nvim',
dir = '~/dev/oil.nvim',
'barrettruth/canola.nvim',
dir = '~/dev/canola.nvim',
config = function(_, opts)
require('oil').setup(opts)
local refresh = require('oil.actions').refresh
@ -419,6 +428,7 @@ return {
},
},
{
-- TODO: replace this with own barrettruth/render.nvim
'wallpants/github-preview.nvim',
dir = '~/dev/github-preview.nvim',
keys = { { '<leader>m', '<cmd>silent GithubPreviewToggle<cr>' } },