add: plan helpers.

add: slime plugin.
add: spell checker stuff.
This commit is contained in:
GitMatt
2025-01-22 21:11:54 -08:00
parent d4d2a2e32f
commit 43f116fe2c
7 changed files with 63 additions and 34 deletions

View File

@@ -1,16 +1 @@
return {
{
"catppuccin/nvim",
config = function()
require("catppuccin").setup({
flavour = "macchiato", -- latte, frappe, macchiato, mocha
})
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
}
return {}

27
lua/plugins/plan.lua Normal file
View File

@@ -0,0 +1,27 @@
return {
{
"junegunn/fzf",
keys = {
{
"<leader>sp",
function()
require("fzf-lua").live_grep({
cwd = vim.fn.expand("$HOME") .. "/.plan",
prompt = "Find Plans (Grep) >",
})
end,
desc = "Find Plans (Grep)",
},
{
"<leader>fp",
function()
require("fzf-lua").files({
cwd = vim.fn.expand("$HOME") .. "/.plan",
prompt = "Find Plans >",
})
end,
desc = "Find Plans",
},
},
},
}

9
lua/plugins/slime.lua Normal file
View File

@@ -0,0 +1,9 @@
return {
{
"jpalardy/vim-slime",
init = function()
vim.g.slime_target = "tmux"
vim.g.slime_default_config = { socket_name = "default", target_pane = "1" }
end,
},
}