Compare commits
3 Commits
9f7d577915
...
4b6f67f6dd
Author | SHA1 | Date |
---|---|---|
|
4b6f67f6dd | |
|
0bc2e27bbd | |
|
bbc653f83a |
|
@ -0,0 +1,3 @@
|
|||
[submodule "scripts/vim/bundles/vim-plug"]
|
||||
path = scripts/vim/bundles/vim-plug
|
||||
url = https://github.com/junegunn/vim-plug
|
|
@ -0,0 +1 @@
|
|||
plugged
|
|
@ -1,10 +0,0 @@
|
|||
set number
|
||||
set expandtab
|
||||
set tabstop=2
|
||||
set softtabstop=2
|
||||
set shiftwidth=2
|
||||
|
||||
" execute pathogen#infect()
|
||||
syntax on
|
||||
filetype plugin indent on
|
||||
|
|
@ -0,0 +1 @@
|
|||
Subproject commit d80f495fabff8446972b8695ba251ca636a047b0
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
ln -d -s $(readlink -f .) ~/.vim
|
|
@ -0,0 +1,13 @@
|
|||
:filetype plugin indent on
|
||||
:filetype indent on
|
||||
:set autoindent
|
||||
:set expandtab tabstop=2 shiftwidth=2 softtabstop=2 smarttab
|
||||
:set number
|
||||
|
||||
:source ~/.vim/bundles/vim-plug/plug.vim
|
||||
|
||||
call plug#begin()
|
||||
|
||||
Plug 'JuliaEditorSupport/julia-vim'
|
||||
|
||||
call plug#end()
|
Loading…
Reference in New Issue