Compare commits

...

2 Commits

Author SHA1 Message Date
9a81aaba57 pushing updates 2025-11-18 21:59:39 -05:00
bdbd173a2b updating gruvbox to a maintained pkg 2025-11-18 11:30:14 -05:00

View File

@@ -710,6 +710,7 @@ require('lazy').setup({
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
{ name = 'orgmode' },
},
}
end,
@@ -720,16 +721,37 @@ require('lazy').setup({
-- change the command in the config to whatever the name of that colorscheme is.
--
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'morhetz/gruvbox',
'ellisonleao/gruvbox.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
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'.
opts = {
terminal_colors = true,
undercurl = true,
underline = true,
bold = true,
italic = {
strings = false,
emphasis = false,
comments = false,
operators = false,
folds = false,
},
strikethrough = true,
invert_selection = false,
invert_signs = false,
invert_tabline = false,
invert_intend_guides = false,
inverse = true,
contrast = '', -- can be "hard, "soft", or empty string
palette_overrides = {},
overrides = {},
dim_inactive = false,
transparent_mode = false,
},
config = function()
require('gruvbox').setup {
--optional customization here
}
vim.cmd.colorscheme 'gruvbox'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end,
},
@@ -830,6 +852,26 @@ require('lazy').setup({
{ '<leader>gg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
},
},
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
--Setup orgmode
require('orgmode').setup {
org_agenda_files = '~/org/**/*',
org_default_notes_file = '~/org/default.org',
mappings = {
org = {
org_toggle_checkbox = '<C-Space>',
},
},
}
-- Setup org-specific keybindings
vim.keymap.set('n', '<leader>oa', '<cmd>lua require("orgmode").action("agenda.prompt")<CR>', { desc = '[O]rg [A]genda' })
vim.keymap.set('n', '<leader>oc', '<cmd>lua require("orgmode").action("agenda.prompt")<CR>', { desc = '[O]rg [C]apture' })
end,
},
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
-- init.lua. If you want these files, they are in the repository, so you can just download them and