added bufferline and others
This commit is contained in:
parent
c9553d36a3
commit
e6f34faa53
9 changed files with 323 additions and 36 deletions
|
|
@ -44,10 +44,15 @@ return packer.startup(function(use)
|
|||
use "wbthomason/packer.nvim" -- Have packer manage itself
|
||||
use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim
|
||||
use "nvim-lua/plenary.nvim" -- Useful lua functions used ny lots of plugins
|
||||
|
||||
use "windwp/nvim-autopairs" -- Autopairs
|
||||
-- use "numToStr/Comment.nvim" -- Easily comment stuff
|
||||
use 'kyazdani42/nvim-web-devicons'
|
||||
use 'kyazdani42/nvim-tree.lua'
|
||||
-- Colorschemes
|
||||
-- use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
|
||||
use "lunarvim/darkplus.nvim"
|
||||
use "akinsho/bufferline.nvim"
|
||||
use "moll/vim-bbye"
|
||||
|
||||
-- cmp plugins
|
||||
use "hrsh7th/nvim-cmp" -- The completion plugin
|
||||
|
|
@ -73,6 +78,14 @@ return packer.startup(function(use)
|
|||
}
|
||||
use "nvim-telescope/telescope-media-files.nvim"
|
||||
|
||||
-- Treesitter
|
||||
use {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = ":TSUpdate",
|
||||
}
|
||||
-- use "p00f/nvim-ts-rainbow"
|
||||
-- use "nvim-treesitter/playground"
|
||||
|
||||
-- Automatically set up your configuration after cloning packer.nvim
|
||||
-- Put this at the end after all plugins
|
||||
if PACKER_BOOTSTRAP then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue