this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update syntax coloring

+29 -7
+13
nvim/after/syntax/haskell.vim
··· 1 + syntax match hsNiceOperator "\\\ze[[:alpha:][:space:]_([]" conceal cchar=λ 2 + 3 + syntax match hsNiceOperator "<-" conceal cchar=← 4 + syntax match hsNiceOperator "->" conceal cchar=→ 5 + syntax match hsNiceOperator "=>" conceal cchar=⇒ 6 + syntax match hsNiceOperator "\:\:" conceal cchar=∷ 7 + 8 + syntax match hsNiceOperator "\.\." conceal cchar=… 9 + 10 + syntax match hsNiceOperator "\<Bool\>" conceal cchar=𝔹 11 + syntax match hsNiceOperator "\<Rational\>" conceal cchar=ℚ 12 + syntax match hsNiceOperator "\<Integer\>" conceal cchar=ℤ 13 + syntax match hsNiceOperator "\<Double\>" conceal cchar=𝔻
+8
nvim/after/syntax/ruby.vim
··· 1 + let s:bcs = b:current_syntax 2 + 3 + unlet b:current_syntax 4 + syntax include @SQL syntax/sql.vim 5 + let b:current_syntax = s:bcs 6 + 7 + syntax region rubyHereDocSQL matchgroup=Statement start=+<<\z(SQL\)+ end=+^\z1$+ contains=@SQL 8 + syntax region rubyHereDocDashSQL matchgroup=Statement start=+<<-\z(SQL\)+ end=+\s\+\z1$+ contains=@SQL
+8 -7
nvim/ftplugin/haskell.vim
··· 1 1 " Tab specific option 2 - set tabstop=8 "A tab is 8 spaces 3 - set expandtab "Always uses spaces instead of tabs 4 - set softtabstop=4 "Insert 4 spaces when tab is pressed 5 - set shiftwidth=4 "An indent is 4 spaces 6 - set smarttab "Indent instead of tab at start of line 7 - set shiftround "Round spaces to nearest shiftwidth multiple 8 - set nojoinspaces "Don't convert spaces to tabs 2 + setlocal tabstop=8 "A tab is 8 spaces 3 + setlocal expandtab "Always uses spaces instead of tabs 4 + setlocal softtabstop=4 "Insert 4 spaces when tab is pressed 5 + setlocal shiftwidth=4 "An indent is 4 spaces 6 + setlocal smarttab "Indent instead of tab at start of line 7 + setlocal shiftround "Round spaces to nearest shiftwidth multiple 8 + setlocal nojoinspaces "Don't convert spaces to tabs 9 + setlocal conceallevel=2