feat(nvim): add smoothscroll and md preview

This commit is contained in:
2021-11-08 13:39:00 +01:00
parent 2fe7f127e5
commit a39c4c6434
4 changed files with 12 additions and 4 deletions

View File

@ -41,7 +41,8 @@ cmp.setup {
},
sources = {
{name = "nvim_lsp"},
{name = "luasnip"}
{name = "luasnip"},
{name = "path"}
}
}

View File

@ -18,7 +18,8 @@ return require("packer").startup(function()
use "nvim-lua/popup.nvim"
use "mhinz/vim-startify"
use "lukas-reineke/indent-blankline.nvim"
use "karb94/neoscroll.nvim"
-- Code Navigation
use "dense-analysis/ale"
use "nathanmsmith/nvim-ale-diagnostic"
@ -38,6 +39,7 @@ return require("packer").startup(function()
use "nvim-lua/lsp-status.nvim"
use "hrsh7th/nvim-cmp"
use "hrsh7th/cmp-nvim-lsp"
use "hrsh7th/cmp-path"
use "weilbith/nvim-code-action-menu" -- Need to find better alternative
use "L3MON4D3/LuaSnip"
use "windwp/nvim-autopairs"
@ -47,7 +49,10 @@ return require("packer").startup(function()
run = ':TSUpdate'
}
-- Preview Markdown
use "ellisonleao/glow.nvim"
-- Autoformat
use "sbdchd/neoformat"
-- General Popup Window