From a78f119b4bf05a2b0435d002ad381e419456d536 Mon Sep 17 00:00:00 2001 From: Steffen Rademacker Date: Tue, 6 Jul 2021 09:14:36 +0200 Subject: [PATCH] Remove unused plugins, current python + some npm packages --- install/1_languages.sh | 4 ++-- install/5_webdev.sh | 4 +++- nvim/init.vim | 5 ----- nvim/plugins.vim | 18 ------------------ 4 files changed, 5 insertions(+), 26 deletions(-) diff --git a/install/1_languages.sh b/install/1_languages.sh index 0f6763b7..ca2df44e 100755 --- a/install/1_languages.sh +++ b/install/1_languages.sh @@ -17,6 +17,6 @@ npm update -g # first: find out the current python3 version in homebrew # then install this version with pyenv and link it brew install pyenv # restart terminal, then: -pyenv install 3.9.5 -pyenv global 3.9.5 +pyenv install 3.9.6 +pyenv global 3.9.6 pip install --upgrade pip diff --git a/install/5_webdev.sh b/install/5_webdev.sh index 514c22af..cf5686ef 100755 --- a/install/5_webdev.sh +++ b/install/5_webdev.sh @@ -27,9 +27,11 @@ brew link php@7.4 pecl install imagick # additional webdev cli tools +npm install -g depcheck +npm install -g glyphhanger npm install -g npm-check +npm install -g npm-check-updates npm install -g yarn -npm install -g glyphhanger # additional stuff for glyphhanger pip install fonttools diff --git a/nvim/init.vim b/nvim/init.vim index 03996277..8a7fe7c7 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -2,7 +2,6 @@ call plug#begin('~/.config/nvim/plugged') " Some dependencies and colorscheme Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } -Plug 'kyazdani42/nvim-web-devicons' Plug 'rktjmp/lush.nvim' Plug 'npxbr/gruvbox.nvim' @@ -26,10 +25,6 @@ Plug 'wellle/targets.vim' Plug 'wellle/tmux-complete.vim' Plug 'wincent/terminus' -" Stuff to try out... -Plug 'akinsho/nvim-bufferline.lua' -Plug 'folke/which-key.nvim' - call plug#end() " load the default config and mappings diff --git a/nvim/plugins.vim b/nvim/plugins.vim index 41e90ebd..4bb0d9ff 100644 --- a/nvim/plugins.vim +++ b/nvim/plugins.vim @@ -10,24 +10,6 @@ require('nvim-treesitter.configs').setup { } EOF -" bufferline -lua < , :BufferLinePick nnoremap ] :BufferLineCycleNext nnoremap [ :BufferLineCyclePrev