This commit is contained in:
Matthieu Fortin [CPC/CCP] 2024-11-15 14:53:48 -05:00
parent 7eb008af14
commit 5ae221c210
4 changed files with 22 additions and 2 deletions

View file

@ -450,7 +450,7 @@ gcom() {
} }
lazyg() { lazyg() {
git add . git add .
git commit -m "$1" git commit -m "$(curl -s https://whatthecommit.com/index.txt)"
git push git push
} }

View file

@ -1,4 +1,4 @@
https://github.com/gaurav210233/simple-hyprland/ https://github.com/gaurav210233/simple-hyprland/
https://alexforsale.github.io/dotfiles-hyprland/ https://alexforsale.github.io/dotfiles-hyprland/
https://config.phundrak.com/hyprland.html#autolaunch-of-programs https://config.phundrak.com/hyprland.html

View file

@ -35,6 +35,7 @@ return {
sources = cmp.config.sources({ sources = cmp.config.sources({
{ name = "nvim_lsp" }, { name = "nvim_lsp" },
{ name = "luasnip" }, -- For luasnip users. { name = "luasnip" }, -- For luasnip users.
{ name = "orgmode" },
}, { }, {
{ name = "buffer" }, { name = "buffer" },
}), }),

View file

@ -0,0 +1,19 @@
return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup({
org_agenda_files = '~/orgfiles/**/*',
org_default_notes_file = '~/orgfiles/refile.org',
})
-- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
-- add ~org~ to ignore_install
-- require('nvim-treesitter.configs').setup({
-- ensure_installed = 'all',
-- ignore_install = { 'org' },
-- })
end,
}