diff --git a/lua/custom/plugins/catppuccin.lua b/lua/custom/plugins/catppuccin.lua new file mode 100644 index 00000000..c288c742 --- /dev/null +++ b/lua/custom/plugins/catppuccin.lua @@ -0,0 +1,23 @@ + 'catppuccin/nvim', + name = 'catppuccin', + priority = 1000, + init = function() + -- Load the colorscheme here. + -- Like many other themes, this one has different styles, and you could load + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. + vim.cmd.colorscheme 'catppuccin' + + -- You can configure highlights by doing something like: + vim.cmd.hi 'Comment gui=none' + end, + opts = { + term_colors = true, + --[[ color_overrides = { + mocha = { + base = '#000000', + mantle = '#000000', + crust = '#000000', + }, + }, ]] + }, +} diff --git a/lua/custom/plugins/harpoon.lua b/lua/custom/plugins/harpoon.lua index df30d36e..4a0bd3d0 100644 --- a/lua/custom/plugins/harpoon.lua +++ b/lua/custom/plugins/harpoon.lua @@ -6,9 +6,13 @@ return { }, config = true, keys = { - { 'hm', "lua require('harpoon.mark').add_file()", desc = 'Mark file with harpoon' }, - { 'hn', "lua require('harpoon.ui').nav_next()", desc = 'Go to next harpoon mark' }, - { 'hp', "lua require('harpoon.ui').nav_prev()", desc = 'Go to previous harpoon mark' }, - { 'ha', "lua require('harpoon.ui').toggle_quick_menu()", desc = 'Show harpoon marks' }, + { '', "lua require('harpoon.mark').add_file()", desc = 'Mark file with harpoon' }, + { '', "lua require('harpoon.ui').nav_next()", desc = 'Go to next harpoon mark' }, + { '', "lua require('harpoon.ui').nav_prev()", desc = 'Go to previous harpoon mark' }, + { '', "lua require('harpoon.ui').toggle_quick_menu()", desc = 'Show harpoon marks' }, + { 'om', "lua require('harpoon.mark').add_file()", desc = 'Mark file with harpoon' }, + { 'o[', "lua require('harpoon.ui').nav_next()", desc = 'Go to next harpoon mark' }, + { 'o]', "lua require('harpoon.ui').nav_prev()", desc = 'Go to previous harpoon mark' }, + { 'oo', "lua require('harpoon.ui').toggle_quick_menu()", desc = 'Show harpoon marks' }, }, } diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 355325e3..7d18e394 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -42,7 +42,6 @@ return { -- online, please don't ask me how to install them :) ensure_installed = { -- Update this to ensure that you have the debuggers for the langs you want - 'delve', 'debugpy', }, }