Checkpoint

This commit is contained in:
Prajakt Shastry 2023-12-23 12:08:45 -05:00
parent 465b69fe3a
commit 649cf7b71e
1 changed files with 43 additions and 5 deletions

View File

@ -94,7 +94,18 @@ require('lazy').setup({
{ {
-- Autocompletion -- Autocompletion
'hrsh7th/nvim-cmp', 'hrsh7th/nvim-cmp',
dependencies = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip' }, dependencies = {
-- Snippet Engine & its associated nvim-cmp source
'L3MON4D3/LuaSnip',
'saadparwaiz1/cmp_luasnip',
-- Adds LSP completion capabilities
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
-- Adds a number of user-friendly snippets
'rafamadriz/friendly-snippets',
},
}, },
-- Useful plugin to show you pending keybinds. -- Useful plugin to show you pending keybinds.
@ -137,7 +148,7 @@ require('lazy').setup({
}, },
}, },
{ "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} }, { "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} },
-- "gc" to comment visual regions/lines -- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} }, { 'numToStr/Comment.nvim', opts = {} },
@ -201,6 +212,33 @@ require('lazy').setup({
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
}, },
}, },
{ "almo7aya/openingh.nvim" },
{
"epwalsh/obsidian.nvim",
version = "*", -- recommended, use latest release instead of latest commit
ft = "markdown",
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
-- event = {
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/**.md"
-- "BufReadPre path/to/my-vault/**.md",
-- "BufNewFile path/to/my-vault/**.md",
-- },
dependencies = {
-- Required.
"nvim-lua/plenary.nvim",
-- see below for full list of optional dependencies 👇
},
opts = {
workspaces = {
{
name = "personal",
path = "~/Documents/Projects/notes",
},
},
}
},
{ import = 'custom.plugins' }, { import = 'custom.plugins' },
}, {}) }, {})