Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 2.53 KB

README.md

File metadata and controls

63 lines (45 loc) · 2.53 KB

dotfiles

Home for system configuration and lists of useful tools.

This repo is managed using yadm.

How to setup a new system

  1. Install prerequisites for Homebrew: xcode-select --install
  2. Install Homebrew: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Clone this repo using yadm: yadm clone https://github.com/korsveien/dotfiles.git
  4. Bootstrap with yadm: yadm bootstrap

Lists of useful tools for enhancing productivity and quality of life.

Mac OS

Feature Tool
Window manager Rectangle
App Switcher Apptivate
Window Switcher Contexts
Clipboard manager Maccy
Terminal iTerm2
Mouse Side Button Functionality SensibleSideButtons

Developer Tools

Feature Tool
Editor Neovim
IDE IntelliJ IDEA
REST Client Insomnia

Homebrew Packages

See the contents of Brewfile.

How to remove native tab bar and sidebar header in Firefox

  1. In Firefox, go to about:config and set toolkit.legacyUserProfileCustomizations.stylesheets to true
  2. In Firefox, go to about:support and see the "Profile Folder" row to find its location
  3. Create a folder named chrome in the profile folder
  4. Create userChrome.css and into the folder you just created with the following contents:
/* hides the native tabs */
#TabsToolbar {
  visibility: collapse;
}

/* hides the sidebar */
#sidebar-header {
  visibility: collapse !important;
}

Resources