updates
This commit is contained in:
parent
7eb008af14
commit
5ae221c210
4 changed files with 22 additions and 2 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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" },
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
19
nvim/.config/nvim/lua/plugins/orgmode.lua
Normal file
19
nvim/.config/nvim/lua/plugins/orgmode.lua
Normal 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,
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue