Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Dec 3, 2015
1 parent 4e57e89 commit 6fc70e4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Expand Up @@ -184,3 +184,9 @@
[submodule "bundle/base16-vim"]
path = bundle/base16-vim
url = git@github.com:chriskempson/base16-vim.git
[submodule "bundle/elm.vim"]
path = bundle/elm.vim
url = git@github.com:lambdatoast/elm.vim.git
[submodule "bundle/vim-devicons"]
path = bundle/vim-devicons
url = https://github.com/ryanoasis/vim-devicons.git
1 change: 1 addition & 0 deletions bundle/elm.vim
Submodule elm.vim added at 916842
1 change: 1 addition & 0 deletions bundle/vim-devicons
Submodule vim-devicons added at 0e1b78
3 changes: 2 additions & 1 deletion setting/setting.vim
Expand Up @@ -72,7 +72,7 @@ set smartcase
set hlsearch

" Ignore these files when completing names
set wildignore=.svn,CVS,.git,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.jpg,*.png,*.xpm,*.gif
set wildignore=.svn,CVS,.git,*.o,*.a,*.class,*.mo,*.la,*.so,*.obj,*.swp,*.xpm

" F2 = Paste Toggle (in insert mode, pasting indented text behavior changes)
set pastetoggle=<F2>
Expand Down Expand Up @@ -106,6 +106,7 @@ let NERDTreeChDirMode=2
let NERDTreeShowHidden=1
" single click to open directory
let NERDTreeMouseMode = 2
let NERDTreeRespectWildIgnore = 0

" MiniBufExpl
" ------------
Expand Down
12 changes: 9 additions & 3 deletions snippets/javascript.snippets
Expand Up @@ -9,13 +9,13 @@ snippet gfn
# Arrow function
snippet =>
(${1}) => {
${2}
}
${2}
}

# Class
snippet class
class ${1:name} {
constructor (${2:arg}) {
constructor(${2:arg}) {
${3:// init}
}
${4}
Expand All @@ -30,3 +30,9 @@ snippet forof
# Import
snippet im
import ${1:foo} from '${2:bar}';

# constructor
snippet cons
constructor(${1:arg}) {
${2:// init}
}

0 comments on commit 6fc70e4

Please sign in to comment.