2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-19 03:25:33 +00:00
steffen-dotfiles/install/3_vimux.sh

30 lines
651 B
Bash
Raw Normal View History

2021-03-20 20:38:43 +00:00
#!/usr/bin/env zsh
2022-07-06 10:13:46 +00:00
brew install neovim
2021-03-20 20:38:43 +00:00
brew install tmux
2021-12-05 10:25:22 +00:00
gem install neovim
pip install neovim
2021-12-20 09:59:35 +00:00
pip install yamllint
2021-03-20 20:38:43 +00:00
# link config files
ln -s ~/dotfiles/nvim ~/.config/nvim
ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
# vim and tmux plugin managers
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
2021-12-02 10:10:41 +00:00
# additional language-servers for nvim-lspconfig
2021-12-20 09:59:35 +00:00
npm i -g eslint_d
npm i -g fixjson
2022-07-06 10:38:55 +00:00
npm i -g markdownlint-cli
2021-12-05 10:25:22 +00:00
npm i -g neovim
2022-07-06 10:38:55 +00:00
npm i -g stylelint
2021-12-20 09:59:35 +00:00
npm i -g typescript
2021-12-02 23:49:04 +00:00
npm i -g typescript-language-server
npm i -g vscode-langservers-extracted
npm i -g yaml-language-server
2021-12-02 10:10:41 +00:00
2021-12-14 18:59:34 +00:00
# packer + treesitter
nvim +PackerSync +TSUpdate
nvim +checkhealth