macvim的使用實戰

2021-09-02 09:22:26 字數 1336 閱讀 2757

2. 了解macvim

:h macvim  檢視macvim相關資訊

:version     檢視版本以及載入了哪些配置檔案, 配置檔案的位置

3. 安裝vim的外掛程式管理外掛程式bundle

git clone  ~/.vim/bundle/vundle 

4. 配置一下外掛程式列表

set nocompatible               " be improved

filetype off " required!

set rtp+=~/.vim/bundle/vundle/

call vundle#rc()

" let vundle manage vundle

" required!

"這是vundle本身的設定

bundle 'gmarik/vundle'

" my bundles here:

" original repos on github

bundle 'godlygeek/tabular'

bundle 'l9'

bundle 'fuzzyfinder'

bundle 'git:'

" ...

filetype plugin indent on " required!

" " brief help

" :bundlelist - list configured bundles

" :bundleinstall(!) - install(update) bundles

" :bundlesearch(!) foo - search(or refresh cache first) for foo

" " see :h vundle for more details or wiki for faq

" note: comments after bundle command are not allowed..

5. 安裝外掛程式

開啟macvim, 命令:   :bundleinstall

6. 搜尋新的外掛程式

:bundlesearch matchit 

7.安裝新外掛程式

:bundleinstall matchit.zip

8.將外掛程式配置新增到配置檔案中, 這樣以後安裝就只需要 :bundleinstall 即可

最後在~/.vimrc中的注釋" vim-scripts repos下,加入如下命令並儲存.vimrc檔案,這樣乙個外掛程式就安裝成功了:

bundle 'matchit.zip' 

配置MacVim的Pyhton程式設計環境

已經有很多部落格介紹怎樣配置vim的python程式設計環境了,這週末我將這些優秀的文章讀了一遍,並將我在macvim配置python程式設計環境的步驟記錄在這篇文章裡。下列兩種方式中的任一種均可用來安裝macvim。方式一 通過mac ports 首先確保你的mac ports是最新版 1 sud...

phpStorm實戰使用

常用快捷鍵 command option l 將 格式化 command shift u 切換大小寫 command shift command shift 摺疊 展開所有區塊 command e 列出最後開啟的檔案 control tab control shift tab 切換開啟的檔案 com...

jwt使用實戰

what is jwt?json web token,主要是用來做認證的,因為他是基於數字簽名的 所以安全性賊高,是一種協議,本身是json格式,支援跨語言,同時它由三部分組成header 用於說明加密演算法和說明是jwt playload 傳輸使用者需要攜帶的脫敏業務資訊 signature 用來...