Compare commits
2 Commits
74a761bee3
...
6bca6df972
| Author | SHA1 | Date | |
|---|---|---|---|
| 6bca6df972 | |||
| f989f2e613 |
@@ -6,3 +6,12 @@
|
||||
--
|
||||
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
|
||||
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
|
||||
|
||||
-- When opening multiple files, tile them vertically (side by side)
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
if vim.fn.argc() == 2 then
|
||||
vim.cmd("vertical ball")
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
-- Keymaps are automatically loaded on the VeryLazy event
|
||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||
-- Add any additional keymaps here
|
||||
|
||||
-- Terminal: open relative to current window (don't squash explorer) and smaller
|
||||
local terminal_opts = {
|
||||
cwd = LazyVim.root(),
|
||||
win = { position = "bottom", height = 0.3, relative = "win" },
|
||||
}
|
||||
vim.keymap.set({ "n", "t" }, "<c-/>", function()
|
||||
Snacks.terminal(nil, terminal_opts)
|
||||
end, { desc = "Terminal (Root Dir)" })
|
||||
vim.keymap.set({ "n", "t" }, "<c-_>", function()
|
||||
Snacks.terminal(nil, terminal_opts)
|
||||
end, { desc = "which_key_ignore" })
|
||||
|
||||
@@ -2,7 +2,16 @@ return {
|
||||
{
|
||||
"coder/claudecode.nvim",
|
||||
dependencies = { "folke/snacks.nvim" },
|
||||
config = true,
|
||||
opts = {
|
||||
terminal = {
|
||||
split_width_percentage = 0.99,
|
||||
snacks_win_opts = {
|
||||
relative = "win",
|
||||
position = "bottom",
|
||||
height = 0.30,
|
||||
},
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>a", nil, desc = "AI/Claude Code" },
|
||||
{ "<leader>ac", "<cmd>ClaudeCode<cr>", desc = "Toggle Claude" },
|
||||
|
||||
@@ -1,3 +1,37 @@
|
||||
return {
|
||||
{ "ellisonleao/gruvbox.nvim" },
|
||||
{
|
||||
"nyoom-engineering/oxocarbon.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.opt.background = "dark"
|
||||
vim.cmd("colorscheme oxocarbon")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"sainnhe/sonokai",
|
||||
opts = {
|
||||
sonokai_style = "atlantis",
|
||||
sonokai_transparent_background = 1,
|
||||
sonokai_enable_italic = true,
|
||||
},
|
||||
},
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
opts = {
|
||||
style = "night",
|
||||
transparent = true,
|
||||
styles = { comments = { italic = true } },
|
||||
},
|
||||
},
|
||||
{
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
opts = {
|
||||
transparent_background = true,
|
||||
filter = "spectrum",
|
||||
},
|
||||
},
|
||||
{ "scottmckendry/cyberdream.nvim" },
|
||||
{ "maxmx03/fluoromachine.nvim" },
|
||||
{ "rafamadriz/neon" },
|
||||
}
|
||||
|
||||
13
nvim/lua/plugins/vimade.lua
Normal file
13
nvim/lua/plugins/vimade.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return {
|
||||
"TaDaa/vimade",
|
||||
event = "WinNew",
|
||||
opts = {
|
||||
recipe = { "minimalist", { animate = true } },
|
||||
fadelevel = 0.8,
|
||||
blocklist = {
|
||||
claude_terminal = {
|
||||
buf_opts = { ft = "snacks_terminal" },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user