diff --git a/README.md b/README.md index 5e6f1c7..56d2613 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,14 @@ This folder contains my [Streamlink](https://streamlink.github.io/) configuratio This folder contains my configuration for my terminal emulator [Termite](https://github.com/thestinger/termite). +### `.config/vue` +This file contains my configuration for [vue-cli](https://github.com/vuejs/vue-cli). + ### `.config/Trolltech.conf` This file contains my QT4 configuration. + + ### `bin` This folder contains a bunch of scripts that I use. Some of them are used by Polybar or i3 and others are used directly and some like `utils.sh` contain diff --git a/install.sh b/install.sh index 2f549c5..a70b167 100755 --- a/install.sh +++ b/install.sh @@ -48,6 +48,7 @@ LINKED_FILES_HOME=( ".config/streamlink" ".config/termite" ".config/Trolltech.conf" + ".config/vue" ".dircolors" ".env" ".gtkrc-2.0.mine" diff --git a/system/.config/vue/.vuerc b/system/.config/vue/.vuerc new file mode 100644 index 0000000..4949eea --- /dev/null +++ b/system/.config/vue/.vuerc @@ -0,0 +1,21 @@ +{ + "useTaobaoRegistry": false, + "presets": { + "My Preset": { + "useConfigFiles": false, + "plugins": { + "@vue/cli-plugin-babel": {}, + "@vue/cli-plugin-pwa": {}, + "@vue/cli-plugin-eslint": { + "config": "prettier", + "lintOn": [ + "save" + ] + } + }, + "router": true, + "routerHistoryMode": true, + "cssPreprocessor": "sass" + } + } +} \ No newline at end of file