/README.md

https://github.com/alphastorm/dotfiles · Markdown · 63 lines · 44 code · 19 blank · 0 comment · 0 complexity · 3997b46739a802c8999b5dd85980b387 MD5 · raw file

  1. # dotfiles
  2. my dotfiles and configuration stuff.
  3. ## colorscheme
  4. [solarized dark](http://ethanschoonover.com/solarized)
  5. ## directory colors
  6. [dircolors-solarized](https://github.com/seebi/dircolors-solarized)
  7. ## font
  8. [Inconsolata-g for powerline](https://github.com/powerline/fonts/tree/master/Inconsolata-g)
  9. ## homebrew
  10. [homebrew](http://brew.sh/)
  11. ```
  12. cmake
  13. coreutils
  14. csshx
  15. diff-so-fancy
  16. fzf
  17. gpg
  18. httpie
  19. jq
  20. macvim --with-override-system-vim
  21. pinentry-mac
  22. shellcheck
  23. wget
  24. z
  25. zsh
  26. ```
  27. ### fzf
  28. install useful key bindings and fuzzy completion:
  29. ```
  30. $(brew --prefix)/opt/fzf/install
  31. ```
  32. ### keybase
  33. install keybase using a cask:
  34. ```
  35. brew cask install keybase
  36. ```
  37. ### ripgrep
  38. homebrew-core's version is compiled with rust stable and no SIMD. install a
  39. binary compiled with rust nightly (including SIMD and all optimizations) by
  40. utilizing a custom tap:
  41. ```
  42. brew tap burntsushi/ripgrep https://github.com/BurntSushi/ripgrep.git
  43. brew install burntsushi/ripgrep/ripgrep-bin
  44. ```