Compare commits
3 Commits
8f36f760f4
...
c69c750d31
Author | SHA1 | Date | |
---|---|---|---|
c69c750d31 | |||
12ca3baa0a | |||
d47dfa3a30 |
File diff suppressed because it is too large
Load Diff
@ -142,7 +142,8 @@ call plug#begin('~/.config/nvim/plugged')
|
||||
Plug 'sbdchd/neoformat'
|
||||
|
||||
Plug 'hrsh7th/cmp-vsnip'
|
||||
Plug 'hrsh7th/nvim-vsnip'
|
||||
Plug 'hrsh7th/vim-vsnip'
|
||||
Plug 'hrsh7th/vim-vsnip-integ'
|
||||
|
||||
" Telescope
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
|
@ -20,6 +20,10 @@ function update_pip() {
|
||||
python3 -m pip install --upgrade pip --user
|
||||
}
|
||||
|
||||
function install_neovim_module_for_python() {
|
||||
pip3 install neovim --pre --user --force
|
||||
}
|
||||
|
||||
function install_pyright() {
|
||||
# Install pyright
|
||||
sudo npm -g i pyright --force
|
||||
@ -53,7 +57,8 @@ function install_gopls() {
|
||||
|
||||
function install_black() {
|
||||
# Install black
|
||||
pip3 install black --user --force
|
||||
pip install black --pre --user --force
|
||||
pip3 install black --pre --user --force
|
||||
}
|
||||
|
||||
function install_ansible() {
|
||||
@ -66,11 +71,6 @@ function install_ansible-language-server() {
|
||||
sudo npm -g i yaml-language-server --force
|
||||
}
|
||||
|
||||
function install_meraki_ansible() {
|
||||
ansible-galaxy collection install cisco.meraki --force
|
||||
pip3 install meraki --user --force
|
||||
}
|
||||
|
||||
function main() {
|
||||
command_start update_pip
|
||||
command_start install_pyright
|
||||
@ -82,7 +82,6 @@ function main() {
|
||||
command_start install_gopls
|
||||
command_start install_black
|
||||
command_start install_ansible
|
||||
command_start install_meraki_ansible
|
||||
}
|
||||
|
||||
main
|
||||
|
Loading…
Reference in New Issue
Block a user