Update javascript and elixir linters; add cat alias

This commit is contained in:
Mitchell Simon 2019-08-30 12:44:59 -04:00
parent 202f8d48f4
commit ab9a1be29b
2 changed files with 5 additions and 2 deletions

View File

@ -0,0 +1,3 @@
function cat
bat --theme ansi-dark $argv
end

4
.vimrc
View File

@ -52,7 +52,7 @@ let g:lightline = {
\}
let g:ale_linters = {
\ 'javascript': ['tsserver'],
\ 'javascript': ['tsserver', 'eslint'],
\ 'css': ['csslint'],
\ 'go': ['golint', 'go vet', 'gopls'],
\ 'typescript': ['tslint', 'tsserver', 'typecheck'],
@ -62,7 +62,7 @@ let g:ale_linters = {
\ 'dart': ['language_server', 'dartanalyzer'],
\ 'fish': ['fish'],
\ 'vim': ['vint'],
\ 'elixir': ['credo', 'elixir-ls'],
\ 'elixir': ['credo', 'elixir-ls', 'mix'],
\}