1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
e969384d4c Vue.js linting 2019-03-14 12:19:10 +01:00
2d67b55c60 nvm bash completion 2019-03-14 12:18:52 +01:00
2 changed files with 7 additions and 0 deletions

View File

@@ -211,6 +211,7 @@ PATH=$PATH:/usr/local/bin/android-sdk-linux/platform-tools:/usr/local/bin/androi
# nvm node.js package manager virtualenv thing
export NVM_DIR="${HOME}/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# QT autoscaling, helpful for hidpi systems
export QT_AUTO_SCREEN_SCALE_FACTOR=1

6
.vim/ftdetect/vue.vim Normal file
View File

@@ -0,0 +1,6 @@
" Run both javascript and vue linters for vue files.
let b:ale_linter_aliases = ['javascript', 'vue']
" Select the eslint and vls linters.
let b:ale_linters = ['eslint', 'vls']
let b:ale_fixers = ['prettier', 'eslint']