var title = '
' + '' + '' + '勇敢' + '勇敢的心' + '
' $('body').prepend(title);

个人电脑使用习惯配置(windows)

Ⅰ、powershell的配置

 一、VIM   

  1、下载VIM。

    官网下载地址:https://www.vim.org/download.php#pc

  2、找到Vim文件夹中的vimrc文件进行修改,增加下面这4行。

    set encoding=utf-8
    set termencoding=utf-8
    set fileencoding=utf-8
    set fileencodings=ucs-bom,utf-8,chinese,cp936

  3、在C:\Windows\System32\WindowsPowerShell\v1.0目录下新建profile.ps1文件,复制下面的代码到profile.ps1文件中。

    
# There's usually much more than this in my profile!
$SCRIPTPATH = "C:\Program Files (x86)\Vim"
$VIMPATH = $SCRIPTPATH + "\vim82\vim.exe"
 
Set-Alias vi $VIMPATH
Set-Alias vim $VIMPATH
 
# for editing your PowerShell profile
Function Edit-Profile
{
vim $profile
}
 
# for editing your Vim settings
Function Edit-Vimrc
{
vim $home\_vimrc
}

  4、重启Shell,执行Set-ExecutionPolicy RemoteSigned命令修改模式。

Set-ExecutionPolicy RemoteSigned

  5、结束

 
posted @ 2021-09-08 14:26  妖仙  阅读(80)  评论(0编辑  收藏  举报