Change colorscheme

This commit is contained in:
Marko Korhonen 2021-12-18 00:19:49 +02:00
parent 0052ea28f8
commit 5411c2f5e7
6 changed files with 82 additions and 28 deletions

View file

@ -20,7 +20,7 @@ require('packer').startup(function()
use {'wbthomason/packer.nvim', opt = true}
-- Colorscheme
use 'EdenEast/nightfox.nvim'
use({"catppuccin/nvim", as = "catppuccin"})
-- Git in signcolumn
use 'airblade/vim-gitgutter'
@ -65,11 +65,11 @@ require('packer').startup(function()
use 'williamboman/nvim-lsp-installer'
-- Completion
use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
use 'hrsh7th/cmp-path' -- Path source for nvim-cmp
use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
use 'L3MON4D3/LuaSnip' -- Snippets plugin
use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
use 'hrsh7th/cmp-path' -- Path source for nvim-cmp
use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
use 'L3MON4D3/LuaSnip' -- Snippets plugin
-- treesitter syntax highlight
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}