ApacheScribe / dotfiles

my configuration files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup:

incomplete notes all commands ran from root directory

  • ./dotty install

  • install zsh (e.g. brew install zsh zsh-completions and chsh -s /bin/zsh)

    • install oh-my-zsh

      curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o /tmp/omz-install.sh
      sh /tmp/omz-install.sh --skip-chsh
      
    • install zsh theme: ln -s $(pwd)/my.zsh-theme ~/.oh-my-zsh/themes/jeffwu.zsh-theme

    • overwrite zshrc: echo "source $(pwd)/zshrc" > ~/.zshrc

  • install fasd (e.g. brew install fasd)

  • make sure vim is 7.4+, preferably 8+ (e.g. brew install vim)

  • install vim plugins: vim +PlugInstall +qall

    • this should install fzf (if not, do e.g. brew install fzf)
  • install Ag (https://github.com/ggreer/the_silver_searcher):

    • brew install the_silver_searcher
  • optional

  • very optional:

    • install spacemacs: git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
    • install neovim, then
      mkdir -p $HOME/.config
      ln -s ~/.vim $HOME/.config/nvim
      # sudo pip3 install neovim
      sudo pip3 install pynvim
      
    • install fnm brew install fnm
    • install latex brew cask install mactex

TODO

About

my configuration files


Languages

Language:Vim Script 69.9%Language:Python 11.6%Language:Emacs Lisp 7.6%Language:Shell 6.8%Language:JavaScript 3.5%Language:Perl 0.6%