Add all nvim files
This commit is contained in:
36
.config/nvim/lua/dobiadi/packer.lua
Normal file
36
.config/nvim/lua/dobiadi/packer.lua
Normal file
@@ -0,0 +1,36 @@
|
||||
vim.cmd [[packadd packer.nvim]]
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
-- Package manager
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Theme
|
||||
use 'folke/tokyonight.nvim'
|
||||
|
||||
-- LSP
|
||||
use 'neovim/nvim-lspconfig'
|
||||
use 'jose-elias-alvarez/null-ls.nvim'
|
||||
|
||||
-- Autocomplete
|
||||
use 'hrsh7th/nvim-cmp'
|
||||
use 'hrsh7th/cmp-nvim-lsp'
|
||||
use 'hrsh7th/cmp-buffer'
|
||||
use 'hrsh7th/cmp-path'
|
||||
use 'hrsh7th/cmp-nvim-lsp-signature-help'
|
||||
use 'L3MON4D3/LuaSnip'
|
||||
use 'saadparwaiz1/cmp_luasnip'
|
||||
|
||||
-- Telescope
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
||||
requires = { {'nvim-lua/plenary.nvim'} }
|
||||
}
|
||||
use 'nvim-treesitter/nvim-treesitter'
|
||||
use 'nvim-treesitter/nvim-treesitter-context'
|
||||
use 'kyazdani42/nvim-web-devicons'
|
||||
use 'sharkdp/fd'
|
||||
use 'BurntSushi/ripgrep'
|
||||
|
||||
-- Statusline
|
||||
use 'nvim-lualine/lualine.nvim'
|
||||
end)
|
||||
Reference in New Issue
Block a user