Remove unused plugins, current python + some npm packages

main
Steffen Rademacker 3 years ago
parent 7016a54d5a
commit a78f119b4b

@ -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

@ -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

@ -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

@ -10,24 +10,6 @@ require('nvim-treesitter.configs').setup {
}
EOF
" bufferline
lua <<EOF
require('bufferline').setup {
options = {
numbers = "ordinal",
mappings = true,
separator_style = "thin",
always_show_bufferline = false,
show_close_icon = false
}
}
EOF
" which key
lua << EOF
require('which-key').setup {}
EOF
nnoremap <silent> <leader>, :BufferLinePick<cr>
nnoremap <silent> <leader>] :BufferLineCycleNext<CR>
nnoremap <silent> <leader>[ :BufferLineCyclePrev<CR>

Loading…
Cancel
Save