1
0
Fork 0

Autocommitted updated scripts from mari-wovn

main
Mari 4 years ago
parent ef26097333
commit 0401dcb2c6
  1. 3
      .gitmodules
  2. 1
      vim/.vim
  3. 1
      vim/ale
  4. 8
      vimrc

3
.gitmodules vendored

@ -13,3 +13,6 @@
[submodule "git-aware-prompt"]
path = git-aware-prompt
url = https://github.com/jimeh/git-aware-prompt.git
[submodule "vim/ale"]
path = vim/ale
url = https://github.com/dense-analysis/ale.git

@ -1 +0,0 @@
/home/marissa/.common-configs/per-host/mari-wovn/.vim

@ -0,0 +1 @@
Subproject commit c2b01f0e28b4f007d01373821ba19dcfa440f9c2

@ -23,6 +23,14 @@ let g:gfm_syntax_emoji_conceal = 0
filetype plugin indent on
syntax on
let g:ale_linters = {
\ 'javascript': ['standard'],
\}
let g:ale_fixers = {'javascript': ['standard']}
let g:ale_lint_on_save = 1
let g:ale_fix_on_save = 1
let g:ale_sign_column_always = 1
let g:airline#extensions#tabline#enabled = 1
set modeline
set expandtab

Loading…
Cancel
Save