Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD obsidian.nvim

+16 -3
+2 -2
nvim/lua/completion.lua
··· 19 19 ['<CR>'] = cmp.mapping.confirm({ select = true }) -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items. 20 20 }), 21 21 sources = cmp.config.sources({ 22 - { name = 'lazydev', group_index = 0}, 22 + { name = 'lazydev', group_index = 0 }, 23 23 { name = 'nvim_lsp' }, 24 24 { name = 'vsnip' }, -- For vsnip users. 25 25 { name = 'supermaven' }, 26 26 { name = 'conjure' }, 27 27 }, 28 - {{ name = 'buffer' }}) 28 + { { name = 'buffer' } }) 29 29 }) 30 30 require("cmp_git").setup() 31 31 -- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won't work anymore).
+14 -1
nvim/lua/plugins.lua
··· 361 361 lazy = true, 362 362 cmd = "SupermavenStart" 363 363 }, 364 - "imsnif/kdl.vim" 364 + "imsnif/kdl.vim", 365 + { 366 + "epwalsh/obsidian.nvim", 367 + lazy = true, 368 + ft = "markdown", 369 + dependencies = { "nvim-lua/plenary.nvim" }, 370 + opt = { 371 + workspaces = { 372 + { name = "athenaeum", path = "~/Documents/Athenaeum" }, 373 + -- Mage, the Awakening and other Chronicles of Darkness 374 + { name = "Celestial Grimoire", path = "~/Documents/Celestial Grimoire" } 375 + } 376 + } 377 + }, 365 378 }, nil)