add: plan helpers.
add: slime plugin. add: spell checker stuff.
This commit is contained in:
@@ -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
27
lua/plugins/plan.lua
Normal 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
9
lua/plugins/slime.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user