Tab config, add plugin for syntax highlighting
This commit is contained in:
parent
d4bd609376
commit
05058de743
2 changed files with 16 additions and 7 deletions
|
@ -9,6 +9,19 @@ let g:airline#extensions#tabline#enabled = 1
|
||||||
|
|
||||||
set mouse=a
|
set mouse=a
|
||||||
|
|
||||||
|
set nu
|
||||||
|
set nowrap
|
||||||
|
|
||||||
|
" TODO: do I want these all?
|
||||||
|
set tabstop=2
|
||||||
|
set expandtab
|
||||||
|
set shiftwidth=2
|
||||||
|
set softtabstop=2
|
||||||
|
set sw=2
|
||||||
|
set autoindent
|
||||||
|
set smartindent
|
||||||
|
set smarttab
|
||||||
|
|
||||||
"set splitright
|
"set splitright
|
||||||
"set splitbelow
|
"set splitbelow
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,9 @@ Plug 'airblade/vim-gitgutter' " Shows a diff in the gutter
|
||||||
" TODO: consider switching to powerline
|
" TODO: consider switching to powerline
|
||||||
Plug 'vim-airline/vim-airline' " Display more contextual information
|
Plug 'vim-airline/vim-airline' " Display more contextual information
|
||||||
|
|
||||||
|
" syntax highlighting
|
||||||
|
Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting
|
||||||
|
|
||||||
" [submodule "bundle/airline"]
|
" [submodule "bundle/airline"]
|
||||||
" path = vim/.vim/bundle/airline
|
" path = vim/.vim/bundle/airline
|
||||||
" url = https://github.com/vim-airline/vim-airline
|
" url = https://github.com/vim-airline/vim-airline
|
||||||
|
@ -23,9 +26,6 @@ Plug 'vim-airline/vim-airline' " Display more contextual information
|
||||||
" [submodule "bundle/vim-graphql"]
|
" [submodule "bundle/vim-graphql"]
|
||||||
" path = vim/.vim/bundle/vim-graphql
|
" path = vim/.vim/bundle/vim-graphql
|
||||||
" url = https://github.com/jparise/vim-graphql
|
" url = https://github.com/jparise/vim-graphql
|
||||||
" [submodule "bundle/typescript-vim"]
|
|
||||||
" path = vim/.vim/bundle/typescript-vim
|
|
||||||
" url = https://github.com/leafgarland/typescript-vim
|
|
||||||
" [submodule "bundle/vim-elixir"]
|
" [submodule "bundle/vim-elixir"]
|
||||||
" path = vim/.vim/bundle/vim-elixir
|
" path = vim/.vim/bundle/vim-elixir
|
||||||
" url = https://github.com/elixir-lang/vim-elixir.git
|
" url = https://github.com/elixir-lang/vim-elixir.git
|
||||||
|
@ -41,9 +41,6 @@ Plug 'vim-airline/vim-airline' " Display more contextual information
|
||||||
" [submodule "vim/.vim/bundle/ctrlp"]
|
" [submodule "vim/.vim/bundle/ctrlp"]
|
||||||
" path = vim/.vim/bundle/ctrlp
|
" path = vim/.vim/bundle/ctrlp
|
||||||
" url = https://github.com/ctrlpvim/ctrlp.vim
|
" url = https://github.com/ctrlpvim/ctrlp.vim
|
||||||
" [submodule "vim/.vim/bundle/elm-vim"]
|
|
||||||
" path = vim/.vim/bundle/elm-vim
|
|
||||||
" url = https://github.com/ElmCast/elm-vim
|
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
|
@ -65,7 +62,6 @@ Plug 'vim-airline/vim-airline' " Display more contextual information
|
||||||
" Plug 'reasonml-editor/vim-reason-plus' " Reason syntax highlighting
|
" Plug 'reasonml-editor/vim-reason-plus' " Reason syntax highlighting
|
||||||
" Plug 'scrooloose/nerdcommenter' " Automatically comment lines
|
" Plug 'scrooloose/nerdcommenter' " Automatically comment lines
|
||||||
" Plug 'scrooloose/nerdtree' " NERDTree
|
" Plug 'scrooloose/nerdtree' " NERDTree
|
||||||
" Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting
|
|
||||||
" Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins', 'commit': '865747efe41ea1d923758617d71e8e5b59da292e' } " Auto-completion
|
" Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins', 'commit': '865747efe41ea1d923758617d71e8e5b59da292e' } " Auto-completion
|
||||||
" Plug 'sirver/ultisnips' " Snippet engine
|
" Plug 'sirver/ultisnips' " Snippet engine
|
||||||
" Plug 'sjl/gundo.vim' " Visual undo tree
|
" Plug 'sjl/gundo.vim' " Visual undo tree
|
||||||
|
|
Loading…
Reference in a new issue