minor updates and such

This commit is contained in:
Rahsheen Porter 2023-08-29 19:26:16 -04:00
parent 7bc48c6df4
commit 7d66dea176
6 changed files with 39 additions and 17 deletions

View file

@ -46,7 +46,7 @@ require("lazy").setup({
-- Useful status updates for LSP
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ "j-hui/fidget.nvim", opts = {} },
{ "j-hui/fidget.nvim", opts = {} },
-- Additional lua configuration, makes nvim stuff amazing!
"folke/neodev.nvim",
@ -55,11 +55,16 @@ require("lazy").setup({
{ -- Autocompletion
"hrsh7th/nvim-cmp",
dependencies = { "hrsh7th/cmp-nvim-lsp", "L3MON4D3/LuaSnip", "saadparwaiz1/cmp_luasnip" },
dependencies = {
"hrsh7th/cmp-nvim-lsp",
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
"rafamadriz/friendly-snippets",
},
},
-- Useful plugin to show you pending keybinds.
{ "folke/which-key.nvim", opts = {} },
{ "folke/which-key.nvim", opts = {} },
{ -- Adds git releated signs to the gutter, as well as utilities for managing changes
"lewis6991/gitsigns.nvim",
opts = {
@ -114,7 +119,7 @@ require("lazy").setup({
},
-- "gc" to comment visual regions/lines
{ "numToStr/Comment.nvim", opts = {} },
{ "numToStr/Comment.nvim", opts = {} },
-- Fuzzy Finder (files, lsp, etc)
{ "nvim-telescope/telescope.nvim", version = "*", dependencies = { "nvim-lua/plenary.nvim" } },