Skip to content

Latest commit

 

History

History
executable file
·
102 lines (74 loc) · 2.82 KB

README.md

File metadata and controls

executable file
·
102 lines (74 loc) · 2.82 KB

dotfiles

Getting started (Install in OSX)

  • INSTALL GIT

First git installation is needed. Open terminal and run following command:

git

It's going to open confirmation popup with question if you want to install git, confirm it and you are good to go.

The next command will do the whole process, download the repo, install it and do the cleanup.

git clone https://github.com/dajk/dotfiles.git ~/dotfiles && cd ~/dotfiles && ./install.sh

# To cleanup afterwards run
rm -rf ~/dotfiles
  • ACTIVATING THEME AND OTHER iTerm2 SETUP
  1. iTerm2 > Preferences > Profiles > Colors Tab
  2. Open the Color Presets... drop-down in the bottom right corner
  3. Select Import... from the list
  4. Select the Dracula-theme.itermcolors file (browse from /User/{YOUR_USER}/dotfiles/iterm2/Dracula-theme.itermcolors or download theme from here and select it in this step)
  5. Select the Dracula-theme from Color Presets...
  6. Go to the Text section and increase font size to 14
  • SETUP GESTURES
  1. Open spotlight search (⌘ + space)
  2. Type Trackpad and open
  3. Enable Secondary click & Tap to click options (if it's enabled already, disabled/enable again)
  4. Go to Accesibility > Pointer Control > Trackpad Options
  5. Enable dragging (without drag lock) and click OK
  • RUN DOCKER
open /Applications/Docker.app
  • RUN POSTGRESQL
brew service start postgresql
psql postgres
➜ psql postgres
psql (12.4)
Type "help" for help.

postgres=# press \q to quit
  • GENERATE SSH
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

# copy to clipboard
pbcopy < ~/.ssh/id_rsa.pub
  • SETUP VIM

To install plugins run

# run vim
vi

# install vim packages
:PlugInstall

Features