git and colorscheme

This commit is contained in:
2022-09-30 19:18:15 +03:00
parent ab7626b330
commit d1862f0d15
5 changed files with 48 additions and 48 deletions

View File

@@ -33,49 +33,49 @@ end
return packer.startup(function(use)
-- General Libs
use "wbthomason/packer.nvim" -- Have packer manage itself
use "nvim-lua/popup.nvim" -- Popup API of vim in Neovim
use "nvim-lua/plenary.nvim" -- Lua lib required by other plugins
-- Colorschemes
use "sainnhe/gruvbox-material"
--cmp plugins
use "hrsh7th/nvim-cmp" -- The completion plugin
use "hrsh7th/cmp-buffer" -- buffer completions
use "hrsh7th/cmp-path" -- path completions
use "saadparwaiz1/cmp_luasnip" -- snippet completions
use "hrsh7th/cmp-nvim-lsp"
use "hrsh7th/cmp-nvim-lua"
-- snippets
use "L3MON4D3/LuaSnip" --snippet engine
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
-- LSP
use "neovim/nvim-lspconfig" -- enable LSP
use "williamboman/nvim-lsp-installer" -- simple to use language server installer
use "jose-elias-alvarez/null-ls.nvim" -- for formatters and linters
-- Telescope
use "nvim-telescope/telescope.nvim"
-- TreeSitter
use { "nvim-treesitter/nvim-treesitter" , run = "TSUpdate",}
-- Git Stuff
use "lewis6991/gitsigns.nvim"
-- nvim-tree
use "kyazdani42/nvim-tree.lua"
-- toggleterm
use "akinsho/toggleterm.nvim"
-- lualine
use "nvim-lualine/lualine.nvim"
-- General Libs
use "wbthomason/packer.nvim" -- Have packer manage itself
use "nvim-lua/popup.nvim" -- Popup API of vim in Neovim
use "nvim-lua/plenary.nvim" -- Lua lib required by other plugins
-- Colorschemes
use "sainnhe/gruvbox-material"
use {'shaunsingh/oxocarbon.nvim', run = './install.sh'}
--cmp plugins
use "hrsh7th/nvim-cmp" -- The completion plugin
use "hrsh7th/cmp-buffer" -- buffer completions
use "hrsh7th/cmp-path" -- path completions
use "saadparwaiz1/cmp_luasnip" -- snippet completions
use "hrsh7th/cmp-nvim-lsp"
use "hrsh7th/cmp-nvim-lua"
-- snippets
use "L3MON4D3/LuaSnip" --snippet engine
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
-- LSP
use "neovim/nvim-lspconfig" -- enable LSP
use "williamboman/nvim-lsp-installer" -- simple to use language server installer
use "jose-elias-alvarez/null-ls.nvim" -- for formatters and linters
-- Telescope
use "nvim-telescope/telescope.nvim"
-- TreeSitter
use { "nvim-treesitter/nvim-treesitter" , run = "TSUpdate",}
-- Git Stuff
use "lewis6991/gitsigns.nvim"
use "f-person/git-blame.nvim"
use "tpope/vim-fugitive"
-- nvim-tree
use "kyazdani42/nvim-tree.lua"
-- toggleterm
use "akinsho/toggleterm.nvim"
-- lualine
use "nvim-lualine/lualine.nvim"
if PACKER_BOOTSTRAP then
require("packer").sync()