mirror of https://github.com/mitchell/dotfiles.git
Update javascript and elixir linters; add cat alias
This commit is contained in:
parent
202f8d48f4
commit
ab9a1be29b
|
@ -0,0 +1,3 @@
|
|||
function cat
|
||||
bat --theme ansi-dark $argv
|
||||
end
|
4
.vimrc
4
.vimrc
|
@ -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'],
|
||||
\}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue