diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-17 22:31:28 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-17 22:31:28 +0200 |
commit | 12f5535a178f74adac36237894ffe08e27b7d449 (patch) | |
tree | 666d4a701293f83800d5e87f0cc1e0020c96f1f7 | |
parent | code style (diff) | |
download | linux-home-12f5535a178f74adac36237894ffe08e27b7d449.tar.gz linux-home-12f5535a178f74adac36237894ffe08e27b7d449.zip |
move Windows-specific stuff to .appdata/
Diffstat (limited to '')
-rw-r--r-- | .appdata/Sublime Text 3/Default (Windows).sublime-keymap (renamed from .Sublime Text 3/Default (Windows).sublime-keymap) | 0 | ||||
-rw-r--r-- | .appdata/Sublime Text 3/Preferences.sublime-settings (renamed from .Sublime Text 3/Preferences.sublime-settings) | 0 | ||||
-rw-r--r-- | .appdata/ghc/ghci.conf (renamed from .GHC/ghci.conf) | 0 | ||||
-rw-r--r-- | .bashrc_third_party | 8 |
4 files changed, 6 insertions, 2 deletions
diff --git a/.Sublime Text 3/Default (Windows).sublime-keymap b/.appdata/Sublime Text 3/Default (Windows).sublime-keymap index e64ad82..e64ad82 100644 --- a/.Sublime Text 3/Default (Windows).sublime-keymap +++ b/.appdata/Sublime Text 3/Default (Windows).sublime-keymap diff --git a/.Sublime Text 3/Preferences.sublime-settings b/.appdata/Sublime Text 3/Preferences.sublime-settings index 0132872..0132872 100644 --- a/.Sublime Text 3/Preferences.sublime-settings +++ b/.appdata/Sublime Text 3/Preferences.sublime-settings diff --git a/.GHC/ghci.conf b/.appdata/ghc/ghci.conf index 45a1338..45a1338 100644 --- a/.GHC/ghci.conf +++ b/.appdata/ghc/ghci.conf diff --git a/.bashrc_third_party b/.bashrc_third_party index 48c1137..58cc7da 100644 --- a/.bashrc_third_party +++ b/.bashrc_third_party @@ -38,11 +38,15 @@ symlink_preferences() ( symlink_sublime_preferences() ( set -o errexit -o nounset -o pipefail - symlink_preferences "$HOME/.Sublime Text 3" "$APPDATA/Sublime Text 3/Packages/User" + symlink_preferences \ + "$HOME/.appdata/Sublime Text 3" \ + "$APPDATA/Sublime Text 3/Packages/User" ) symlink_ghc_preferences() ( set -o errexit -o nounset -o pipefail - symlink_preferences "$HOME/.GHC" "$APPDATA/ghc" + symlink_preferences \ + "$HOME/.appdata/ghc" \ + "$APPDATA/ghc" ) |