Browse Source

now sort scss alphabetic

master
Josh Fabean 8 years ago
parent
commit
95d6d8aed9
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      .nvimrc

+ 7
- 1
.nvimrc View File

@ -40,6 +40,9 @@ Plug 'tanarurkerem/drupal-snippets'
"Stupid Coffee Script Because dummies
Plug 'kchmck/vim-coffee-script'
"Git plugin
Plug 'tpope/vim-fugitive'
call plug#end()
let g:airline#extensions#tabline#enabled = 1
@ -74,6 +77,9 @@ let python_highlight_all = 1
"execute "set <M-Left>=\e\eD"
nnoremap <silent> <C-Right> :bnext<CR>
nnoremap <silent> <C-Left> :bprevious<CR>
nnoremap <silent> <C-Del> :bd
nnoremap <silent> <C-Del> :bd<CR>
"sort scss alphabetically
nnoremap <C-a> :g#\({\n\)\@<=#.,/\.*[{}]\@=/-1 sort<CR>
":h i_CTRL-V

Loading…
Cancel
Save