Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.67 KB

README.md

File metadata and controls

64 lines (47 loc) · 1.67 KB

Dotfiles

To use them do the following:

  1. Clone this repo into your home directory:
git clone [email protected]:taylorsilva/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
git submodule update --init
  1. Make sure GNU stow is installed:
# Mac
brew install stow

# Ubuntu/Debian
sudo apt install stow
  1. Depending on which directories you plan to use there may be other setup instructions to follow. Check the README.md inside each folder.

  2. Use stow to create symlinks in your home directory

cd ~/.dotfiles
stow bash neovim git #any other folders, separated by spaces

Other stuff to install

Firefox

Addons to install:

Hide Firefox's Native Tabs

  1. about:config and change toolkit.legacyUserProfileCustomizations.stylesheets to true
  2. about:profiles and open the Root Directory in your file manager
  3. Create a folder called chrome inside that directory and then a file called userChrome.css inside the new folder. Populate userChrome.css with the following:
/* hides the native tabs */
#TabsToolbar {
  visibility: collapse;
}

Go back to Firefox's about:profiles page and press the Restart Normally... button for changes to take effect.