X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/73a2d9946ff469afa1a1a30edb1aa350032bb44c..916478eb344d619ecf930c164540f6fd41002626:/config/nvim/lua/plugins.lua diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index c4e313a..e17b35b 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -44,31 +44,24 @@ require('lazy').setup({ }, -- Syntaxes - 'https://git.sr.ht/~rbdr/api-notation.vim', - 'elzr/vim-json', - 'othree/yajs.vim', 'ARM9/snes-syntax-vim', - 'leafgarland/typescript-vim', - 'leafOfTree/vim-svelte-plugin', - 'bumaociyuan/vim-swift', - 'udalov/kotlin-vim', - 'tikhomirov/vim-glsl', - 'jparise/vim-graphql', - 'digitaltoad/vim-pug', 'https://git.sr.ht/~torresjrjr/gemini.vim', - 'rust-lang/rust.vim', - 'dart-lang/dart-vim-plugin', - 'ziglang/zig.vim', -- Debugging 'mfussenegger/nvim-dap', 'rcarriga/nvim-dap-ui', + 'mxsdev/nvim-dap-vscode-js', -- Editing + 'ms-jpq/coq_nvim', 'tpope/vim-endwise', 'rstacruz/vim-closer', 'michaeljsmith/vim-indent-object', + -- Treesitter + 'nvim-treesitter/nvim-treesitter', + 'https://git.sr.ht/~rbdr/tree-sitter-api-notation', + -- LSP 'neovim/nvim-lspconfig', 'folke/neodev.nvim', @@ -76,5 +69,20 @@ require('lazy').setup({ -- Tools 'vim-scripts/LargeFile', 'tpope/vim-fugitive', - 'milkypostman/vim-togglelist' + 'milkypostman/vim-togglelist', + + -- Org Mode + { 'nvim-orgmode/orgmode', + event = 'VeryLazy', + config = function() + -- Load treesitter grammar for org + require('orgmode').setup_ts_grammar() + + -- Setup orgmode + require('orgmode').setup({ + org_agenda_files = '~/brain/**/*.org', + org_default_notes_file = '~/brain/inbox.org', + }) + end, + } })