Compare commits
4 Commits
d79ca0b927
...
3d8e976741
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d8e976741 | ||
|
|
3096929bd4 | ||
|
|
cc56142c99 | ||
|
|
3cf01cefbd |
@@ -5,7 +5,7 @@ local keymap = vim.keymap
|
|||||||
-- PERSONAL KEYMAPS (ORIGINAL WORKFLOW)
|
-- PERSONAL KEYMAPS (ORIGINAL WORKFLOW)
|
||||||
-- =============================================================================
|
-- =============================================================================
|
||||||
|
|
||||||
keymap.set("n", "<leader>u", "gg0vG$", { desc = "Select the whole file open" })
|
keymap.set("n", "<leader>u", "gg0vG$$", { desc = "Select the whole file open" })
|
||||||
keymap.set("n", "<leader>4", "0v$hy<Esc>0o<Esc>0p0kw<CR>", { desc = "Copy the entire line and paste just below" })
|
keymap.set("n", "<leader>4", "0v$hy<Esc>0o<Esc>0p0kw<CR>", { desc = "Copy the entire line and paste just below" })
|
||||||
|
|
||||||
-- file management
|
-- file management
|
||||||
@@ -83,4 +83,4 @@ keymap.set("v", "<leader>zd", ":CopilotChatDocs<CR>", { desc = "Generate docs (C
|
|||||||
|
|
||||||
-- Copilot
|
-- Copilot
|
||||||
keymap.set("n", "<leader>cp", ":Copilot panel<CR>", { desc = "Copilot: Open copilot panel" })
|
keymap.set("n", "<leader>cp", ":Copilot panel<CR>", { desc = "Copilot: Open copilot panel" })
|
||||||
keymap.set("n", "<leader>ce", ":CopilotChatExplain<CR>", { desc = "Copilot Chat: Explain code" })
|
keymap.set("n", "<leader>ce", ":CopilotChatExplain<CR>", { desc = "Copilot Chat: Explain code" })
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
return {
|
return {
|
||||||
dir = "/Users/carlos/Documents/SSD_Documents/projects/lazygit.nvim",
|
--[[ dir = "/Users/carlos/Documents/SSD_Documents/projects/lazygit.nvim", ]]
|
||||||
--[[ "kdheepak/lazygit.nvim", ]]
|
"kdheepak/lazygit.nvim",
|
||||||
cmd = {
|
cmd = {
|
||||||
"LazyGit",
|
"LazyGit",
|
||||||
"LazyGitConfig",
|
"LazyGitConfig",
|
||||||
|
|||||||
6
lua/cargdev/plugins/termcolor.lua
Normal file
6
lua/cargdev/plugins/termcolor.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
"fei6409/log-highlight.nvim",
|
||||||
|
config = function()
|
||||||
|
require("log-highlight").setup({})
|
||||||
|
end,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user