add vim org stuff
This commit is contained in:
parent
186aee6a23
commit
231173c964
@ -23,6 +23,8 @@ require("paq") {
|
|||||||
"neovim/nvim-lspconfig";
|
"neovim/nvim-lspconfig";
|
||||||
"ziglang/zig.vim";
|
"ziglang/zig.vim";
|
||||||
|
|
||||||
|
"kristijanhusak/orgmode.nvim";
|
||||||
|
|
||||||
"hrsh7th/nvim-compe";
|
"hrsh7th/nvim-compe";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,5 +50,10 @@ vim.cmd("syntax off");
|
|||||||
vim.cmd("source ~/.config/nvim/dumb.vim");
|
vim.cmd("source ~/.config/nvim/dumb.vim");
|
||||||
o.hlsearch = true;
|
o.hlsearch = true;
|
||||||
|
|
||||||
|
require('orgmode').setup({
|
||||||
|
org_agenda_files = {'~/org/*'},
|
||||||
|
org_default_notes_file = '~/org/refile.org',
|
||||||
|
})
|
||||||
|
|
||||||
vim.api.nvim_set_keymap("i", "<CR>", "compe#confirm({ 'keys': '<CR>', 'select': v:true })", { expr = true })
|
vim.api.nvim_set_keymap("i", "<CR>", "compe#confirm({ 'keys': '<CR>', 'select': v:true })", { expr = true })
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user