diff --git a/bash/.bashrc b/bash/.bashrc index 4e3e80a..1dd424d 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -450,7 +450,7 @@ gcom() { } lazyg() { git add . - git commit -m "$1" + git commit -m "$(curl -s https://whatthecommit.com/index.txt)" git push } diff --git a/hypr/.config/hypr/README.md b/hypr/.config/hypr/README.md index db38a04..ad18dbf 100644 --- a/hypr/.config/hypr/README.md +++ b/hypr/.config/hypr/README.md @@ -1,4 +1,4 @@ https://github.com/gaurav210233/simple-hyprland/ https://alexforsale.github.io/dotfiles-hyprland/ -https://config.phundrak.com/hyprland.html#autolaunch-of-programs +https://config.phundrak.com/hyprland.html diff --git a/nvim/.config/nvim/lua/plugins/completions.lua b/nvim/.config/nvim/lua/plugins/completions.lua index 2e7396a..dc45753 100644 --- a/nvim/.config/nvim/lua/plugins/completions.lua +++ b/nvim/.config/nvim/lua/plugins/completions.lua @@ -35,6 +35,7 @@ return { sources = cmp.config.sources({ { name = "nvim_lsp" }, { name = "luasnip" }, -- For luasnip users. + { name = "orgmode" }, }, { { name = "buffer" }, }), diff --git a/nvim/.config/nvim/lua/plugins/orgmode.lua b/nvim/.config/nvim/lua/plugins/orgmode.lua new file mode 100644 index 0000000..ff383ff --- /dev/null +++ b/nvim/.config/nvim/lua/plugins/orgmode.lua @@ -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, +}