# dotfiles Theese are my dotfiles... ## VIM Plugins - Add vundle plugin with `git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim` - Start vim and install plugins with `PlugInstall` ## Tweaks Some things are not (yet) scripted. ### Firefox Preferences Add this to `$fierfox-profile/user.js` ``` user_pref("privacy.donottrackheader.enabled", true ); // Send Do-not-track user_pref("findbar.highlightAll", true ); // Highlight all partial results in search user_pref("browser.sessionstore.max_resumed_crashes", -1 ); // Do not show "Upps, we could not recover" user_pref("browser.fixup.fallback-to-https", false ); // Do not try https after http failed user_pref("extensions.pocket.enabled", false ); // Disable Pocket user_pref("browser.vpn_promo.enabled", false ); // Hide VPN adds user_pref("cookiebanners.service.mode", 2 ); user_pref("cookiebanners.service.mode.privateBrowsing", 2 ); user_pref("cookiebanners.ui.desktop.enabled", true ); user_pref("signon.firefoxRelay.feature", "0" ); user_pref("signon.includeOtherSubdomainsInLookup" false ); // Credentials only for the actual site ``` ### GTK FileCHooser sort order Execute: ``` gsettings set org.gtk.Settings.FileChooser sort-directories-first true ```