New version of emmet

This commit is contained in:
Vasili Svirydau
2013-10-16 15:24:59 -07:00
parent 1f14e60ffd
commit 6333f91a32
12 changed files with 38 additions and 32 deletions

6
.gitmodules vendored
View File

@@ -25,9 +25,6 @@
[submodule "bundle/scala.vim"]
path = bundle/scala.vim
url = git://github.com/jergason/scala.vim.git
[submodule "bundle/zencoding.vim"]
path = bundle/zencoding.vim
url = git://github.com/mattn/zencoding-vim.git
[submodule "bundle/tagbar.vim"]
path = bundle/tagbar.vim
url = git://github.com/majutsushi/tagbar.git
@@ -40,3 +37,6 @@
[submodule "bundle/bling"]
path = bundle/bling
url = https://github.com/ivyl/vim-bling.git
[submodule "bundle/emmet.vim"]
path = bundle/emmet.vim
url = https://github.com/mattn/emmet-vim.git

1
bundle/emmet.vim Submodule

Submodule bundle/emmet.vim added at 6baf3c1210

6
vimrc
View File

@@ -14,6 +14,8 @@ set autoindent "enable autoindent
set hidden "enable multiple dirty buffers
set encoding=utf-8 "set encoding
set autoread "automatically reload files
set wildmode=full
set wildmenu "show autocomplete menu
colorscheme hybrid
@@ -49,6 +51,9 @@ nmap <leader>f* :call JsFunctionLookup()<cr>zz
nnoremap <silent> <Esc><Esc> <Esc>:nohlsearch<CR><Esc>
"highlight search results
set hlsearch
"ignore capitalization
set ignorecase
set smartcase
"highlight current line
set cursorline
"show whitespace
@@ -61,6 +66,7 @@ highlight SpecialKey guifg=#4a4a59
"toggle whitespace
nmap <leader>l :set list!<cr>
noremap <silent> <leader>R :! echo reload \| nc vsviryda01vl 32000<cr><cr>
"tab settings
set shiftwidth=4
set tabstop=4