兩個命令把 Vim 打造成 Python IDE

2022-05-25 05:57:07 字數 1985 閱讀 7113

執行下面兩個命令,即可把 vim(含外掛程式)配置成 python ide。目前支援 mac 和 ubuntu。

(點選可檢視大圖)

寫了個方便的bash指令碼,用來配置vim

使用的配置來自 fisa-vim-config 效果**

shell

#!/bin/bash

# install fisa vim config

echo '******************************='

echo 'start to install dependences...'

case "$ostype" in

darwin*) brew install vim git pip curl;;

linux*) sudo apt-get install vim exuberant-ctags git pip curl;;

*) echo "unknown: os: $ostype, u should install dependences by yourself" ;;

esac

sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort

echo '******************************='

echo 'start to download vimrc file...'

cp ~/.vimrc /tmp/vimrc.bak

curl -o

mv .vimrc ~/.vimrc

echo '******************************='

echo 'start to install vim plugins...'

vim +bundleclean +bundleinstall! +qa

sudo chown -r $user ~/.vim/

#!/bin/bash

# install fisa vim config

echo '******************************='

echo 'start to install dependences...'

case "$ostype" in

darwin*)  brewinstallvim gitpipcurl;;

linux*)  sudoapt-get installvim exuberant-ctags gitpipcurl;;

*)        echo "unknown: os: $ostype, u should install dependences by yourself" ;;

esac

sudopipinstalldbgpvim-debugpep8flake8pyflakesisort

echo '******************************='

echo 'start to download vimrc file...'

cp ~/.vimrc /tmp/vimrc.bak

curl -o

mv .vimrc ~/.vimrc

echo '******************************='

echo 'start to install vim plugins...'

vim +bundleclean +bundleinstall! +qa

sudochown -r $user ~/.vim/

來自: 

參考:使用:

簡簡單單把vim打造成python的IDE

說起來vim的ide,大家都會推薦pycharm.這款軟體確實是一款不錯的ide,但是很多人還是喜歡vim,加上各種外掛程式,用起來也是超爽的.但是配置過程卻是比較麻煩,複雜.現在有比較簡單的方法,只需要兩行 廢話不說,直接上 curl o bash vim.sh 複製 sh 如下 bin bash...

把vscode打造成技術寫作神器

這個時候有套趁手的寫作工具尤為重要,節省下時間好好休息一下,對於咱們程式設計師來說更加重要。因為最近在自己學習golang,為了找個順手的ide嘗試了一下vscode,用後總結兩個字 真香 集編碼 寫作 划水 於一身。話不多說,我們今天先說說寫作這部分。文字寫作推薦大家使用markdown。大家的經...

把vscode打造成技術寫作神器

這個時候有套趁手的寫作工具尤為重要,節省下時間好好休息一下,對於咱們程式設計師來說更加重要。因為最近在自己學習golang,為了找個順手的ide嘗試了一下vscode,用後總結兩個字 真香 集編碼 寫作 划水 於一身。話不多說,我們今天先說說寫作這部分。文字寫作推薦大家使用markdown。大家的經...