Rust cargo bindings, using Dispatch as well
This commit is contained in:
parent
6af8b6afa0
commit
b1fe2a30f6
4 changed files with 13 additions and 4 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -62,3 +62,9 @@
|
|||
[submodule ".vim/bundle/ack.vim"]
|
||||
path = .vim/bundle/ack.vim
|
||||
url = https://github.com/mileszs/ack.vim.git
|
||||
[submodule ".vim/bundle/vim-cargo"]
|
||||
path = .vim/bundle/vim-cargo
|
||||
url = https://github.com/timonv/vim-cargo.git
|
||||
[submodule ".vim/bundle/vim-dispatch"]
|
||||
path = .vim/bundle/vim-dispatch
|
||||
url = https://github.com/tpope/vim-dispatch.git
|
||||
|
|
1
.vim/bundle/vim-cargo
Submodule
1
.vim/bundle/vim-cargo
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit fbf907c353eaafdf4a270f66c1bb6aad767d874f
|
1
.vim/bundle/vim-dispatch
Submodule
1
.vim/bundle/vim-dispatch
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 5f5c22c9ed48ee64fc5f02ac3acd543b97732fe8
|
9
.vimrc
9
.vimrc
|
@ -11,10 +11,15 @@ set hidden
|
|||
" file settings
|
||||
set encoding=utf-8
|
||||
|
||||
" plugins
|
||||
execute pathogen#infect()
|
||||
filetype plugin indent on
|
||||
|
||||
" key mappings
|
||||
let mapleader = ","
|
||||
nmap <leader>p :set paste!<CR>
|
||||
nmap <leader>h :set hlsearch!<CR>
|
||||
nmap <leader>t :w <bar> :Make test<CR>
|
||||
|
||||
" navigate buffers by ctrl-b
|
||||
nmap <C-b> :bprevious<CR>
|
||||
|
@ -43,10 +48,6 @@ set softtabstop=4
|
|||
set shiftwidth=4
|
||||
set expandtab
|
||||
|
||||
" plugins
|
||||
execute pathogen#infect()
|
||||
filetype plugin indent on
|
||||
|
||||
" colours [need pathogen]
|
||||
set t_Co=256
|
||||
syntax enable
|
||||
|
|
Loading…
Reference in a new issue