PowerShell使用vim

PowerShell使用vim

http://www.wowotech.net/soft/vim_in_powershell.htmlhtml

  1. 下載安裝Windows下的vim;
  2. 設置PowerShell環境,能使用「allow scripts to run」,步驟以下:
Set-ExecutionPolicy RemoteSigned
提示輸入Y
  1. 使用new-item命令,建立PowerShell的配置文件Profile
new-item -path $profile -itemtype file -force
  1. 編輯profile(notepad $profile),添加相關的alias
set-alias vim "D:/software/Vim/vim80/./vim.exe"
# To edit the Powershell Profile
# (Not that I'll remember this)
Function Edit-Profile
{
    vim $profile
}
# To edit Vim settings
Function Edit-Vimrc
{
    vim $HOME\_vimrc
}
  1. 重啓powershell

vim編碼問題提

gvim安裝目錄下的_vimrc文件中,添加以下配置:shell

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" vim7.1在windows下的編碼設置。By Huadong.Liu
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set encoding=utf-8
set fileencodings=utf-8,chinese,latin-1
if has("win32")
 set fileencoding=chinese
else
 set fileencoding=utf-8
endif
"解決菜單亂碼
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
"解決consle輸出亂碼
language messages zh_CN.utf-8
相關文章
相關標籤/搜索