Python: vi 簡單配置

1. .vimrc 文件: python

"語法高亮
syntax on
"自動檢測文件類型並加載相應設置
filetype plugin indent on
# 或者
#filetype on 
#filetype plugin on 
#filetype indent on  
autocmd FileType python setlocal tabstop=4 expandtab shiftwidth=4 softtabstop=4
"顯示行號
set number
"在狀態欄顯示命令
set showcmd
2. 從外部粘貼過來的內容不自動縮進,這對Python代碼頗有用

粘貼前使用命令,進入粘貼模式: linux

set paste
粘貼後,還原通常模式:
set nopaste


參考:
用vim編程,配置與技巧
shell

vi 粘貼板如何不縮進
vim的shiftwidth、tabstop、softtabstop設置
編程

相關文章
相關標籤/搜索