配置文件路径C:\Users\UserName\AppData\Local\nvim\init.vim

Vim-plug配置文件路径:C:\Users\UserName\AppData\Local\nvim\autoload\plug.vim

插件目录:C:\Users\UserName\AppData\Local\nvim\plugged\

 

 

 

"file_path: ~/AppData/Local/nvim/init.vim

"plugin_dir_path: ~/AppData/Local/nvim/autoload/plug.vim

 

 

"Basic Settings

 

set nu

set ff=unix

set encoding=utf-8

set fileencoding=utf-8

set termencoding=utf-8

set listchars=tab:>-,trail:-

set relativenumber

set nobk

set noswapfile

exec 'cd '.fnameescape('E:\workspace\')

 

 

set expandtab

set tabstop=4

set softtabstop=4

set showmatch

"set paste "conflict with 'set expandtab' option

"set autoindent

"set cindent

 

syntax on

filetype plugin on

set completeopt=longest,menu

 

 

set hlsearch

set go=

set nocompatible

set autoread

set autowrite

set nobackup

set magic

set ls=2

set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}

 

 

" ****************************** Advanced Settings ***********************

 

"colorscheme yowish "Vim color theme

set dict+=~/dictionary_file_name "using i_Ctrl-x_Ctrl-k to compelte dict

 

 

 

" ----------------------------- Vundle Start -----------------------------

" vim-plug

" curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \

" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

 

call plug#begin('~/AppData/Local/nvim/plugged')

 

Plug 'jiangmiao/auto-pairs'

Plug 'tpope/vim-fugitive'

Plug 'tpope/vim-surround'

"Plug 'ycm-core/YouCompleteMe'

"Plug 'KabbAmine/yowish.vim'

Plug 'scrooloose/nerdcommenter' "nerdcommenter needs settings,go to github

Plug 'godlygeek/tabular'

Plug 'plasticboy/vim-markdown' "let g:vim_markdown_math=1

Plug 'mzlogin/vim-markdown-toc' "let g:vmt_auto_update_on_save=0

Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } }

 

 

call plug#end()

" ----------------------------- Vundle End -----------------------------

 

let g:vim_markdown_math = 1

let g:vmt_auto_update_on_save = 0

"for iamcco/markdown-preview.nvim

let g:mkdp_path_to_chrome="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

let g:mkdp_markdown_css=''

最新文章

  1. 3.0、Spring-注入
  2. 《Entity Framework 6 Recipes》中文翻译系列 (6) -----第二章 实体数据建模基础之使用Code First建模自引用关系
  3. 0030 Linux 网络操作命令
  4. sass的视频教程
  5. Openstack的计算节点的nova-network异常中止及实例无法删除排错过程
  6. sql学习资料
  7. nginx+c+cgi开发
  8. c语言实现交换两个数的值
  9. Windows 服务 Error 14001
  10. 关于vue使用form上传文件
  11. Dangerous well
  12. 【Java每日一题】20170227
  13. 001——使用composer安装ThinkPHP5
  14. 下拉列表JComboBox,列表框JList
  15. python处理csv文档
  16. python multithread task_done
  17. Jmeter OutofMemory Error
  18. MySQL数据库25条规范解读
  19. mysql 安装 注意点
  20. (ubuntu ufw)My firewall is blocking network connections from the docker container to outside

热门文章

  1. [BZOJ2654]:tree(Kruskal+WQS二分)
  2. bootstrap editable 行内编辑
  3. Vue.js之Ajax请求
  4. (知识)width、naturalWidth、clientWidth、offsetWidth区别整理
  5. Android NDK下载
  6. maven之pom.xml的配置
  7. 一元回归1_基础(python代码实现)
  8. Vue项目移动端滚动穿透问题
  9. 2018.03.28 python-pandas groupby使用
  10. Mybatis-plus 思维导图,让 Mybatis-plus 不再难懂