Skip to content

Commit

Permalink
update my profile
Browse files Browse the repository at this point in the history
  • Loading branch information
hy0kl committed Dec 15, 2017
1 parent 9bf315c commit f6797fa
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
*.swp
*.swo
*.dSYM
*.bak

# IDE project
*.project
Expand Down
15 changes: 15 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,18 @@ let NERDTreeIgnore=['^cscope', '^tags$']

" 通过C-X,C-U打开匹配列表
"let g:SuerTabDefaultCompletionType = '<C-X><C-U>'

" vim 插件管理器
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'fatih/vim-go'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
filetype plugin on

15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ profile
- nginx配置文件高亮
- c/c++海量API高亮
- awk脚本语法高亮
- php/js/css/python/c系统函数/sql关键词自动补全
- php/js/css/python/c系统函数/sql关键词/golang/rust自动补全
- 记忆文件最后编辑位置
- VI(M)DE,将vim当做IDE工具
- N多实用别名和参考脚本
Expand Down Expand Up @@ -45,10 +45,23 @@ $ sudo apt-get install ctags tree vim

# 安装方法

## 方法一: 分步初始化

```
$ cd ~
$ git clone https://github.com/hy0kl/profile.git # https协议,防止抛ssh-key无权限
$ cd profile
$ git submodule init
$ git submodule update
$ ./install.sh
```

## 方法二: 使用递归命令初始化

```
$ cd ~
$ git clone --recursive https://github.com/hy0kl/profile.git # https协议,防止抛ssh-key无权限
$ cd profile
$ ./install.sh
```

Expand Down

0 comments on commit f6797fa

Please sign in to comment.