Python vim 配置
" http://xbeta.info/vim-tutorials.htm
"""""""""""""""" General settings """"""""""""""""
set nocompatible
filetype plugin on
filetype indent on
set autoread
set ruler
set nu
set laststatus=1
" Configure backspace so it acts as it should act
set backspace=eol,start,indent
set whichwrap+=<,>,h,l
" Search
set ignorecase
set smartcase
set hlsearch
set incsearch
" For regular expressions turn magic on
set magic
" Don't redraw while executing macros (good performance config)
set lazyredraw
" Show matching brackets when text indicator is over them
set showmatch
" No annoying sound on errors
"set noerrorbells
"set novisualbell
"set t_vb=
"set tm=500
" Colors and Fonts
syntax on
filetype on
colorscheme desert
set guifont=Courier_New:h10
" File type and unicoding
set encoding=utf-8
set fileencodings=ucs-bom,utf-8,cp936
set ffs=unix,dos,mac
" Backup and swap
set nobackup
set nowb
set noswapfile
"""""""""""""""" Special Text and indent """"""""""""""
set expandtab
set smarttab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set backspace=2
set autoindent
set smartindent
set list
""""""""""""""""" windows config """"""""""""""
autocmd GUIEnter * simalt ~x
set guioptions-=T
set guioptions-=r
set guioptions-=L
set gcr=a:block-blinkon0
"""""""""""""""" Pydiction """""""""""""""""
let g:pydiction_location ='D:\Program Files\Vim\vim73\ftplugin\complete-dict'
"""""""""""""""" ctags and taglist """""""""""""
let Tlist_Show_One_file=1
let Tlist_Exit_OnlyWindow=1
nmap tl :TlistToggle
""""""""""""" pathogen """""""""""""""""""""
call pathogen#infect()
""""""""""""" nerdtree """""""""""""""""""""
let NERDTreeHighlightCursorline=1
let NERDTreeIgnore = ['\.pyc$', '\.pyw$']
map <C-t> :NERDTreeToggle<CR>
posted on 2013-01-08 15:41 I'm morning 阅读(271) 评论(0) 编辑 收藏 举报
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述