Skip to content

syq12345678/dotfiles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

557 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My configuration files on macOS

Screenshot of a terminal window

Install brew

Homebrew or Linuxbrew

Configurations managed by GNU stow

macOS and Ubuntu

  • brew.sh

    • Install CLI apps via Homebrew/Linuxbrew
  • perl

    • bash perl/install.sh
    • bash perl/ensembl.sh
  • python

    • bash python/install.sh
  • r

    • bash r/install.sh
  • rust

    • bash rust/install.sh
  • Vim plugins

    • git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
    • vim +PluginInstall +qall
  • Bioinformatics

  • TexLive

    • TinyTex
    • Fonts

macOS only

Packages

The dir packages/ stores installed packages managed by various package managers.

  • Homebrew

    • brew_tap.txt
    • brew_list.txt
    • brew_cask.txt
  • Python pip_list.txt

  • R r_list.txt

  • node.js npm_list.txt

  • VSCode vscode_list.txt

I'm writing them down here to make it easier to compare them between different machines and see if there are something missing.

mkdir -p $HOME/Scripts/dotfiles/packages
WHERE="$HOME/Scripts/dotfiles/packages"

# store
brew tap            | sort > ${WHERE}/brew_tap.txt
brew list --formula | sort > ${WHERE}/brew_list.txt
brew list --cask    | sort > ${WHERE}/brew_cask_list.txt

pip3 freeze > ${WHERE}/pip_list.txt

npm list -g --depth=0 > ${WHERE}/npm_list.txt

Rscript -e 'cat(.Library, "\n"); cat(.Library.site, "\n");' |
  xargs ls |
  sort -u \
  > ${WHERE}/r_list.txt

tlmgr list --only-installed --data 'name' > ${WHERE}/tlmgr_list.txt

code --list-extensions > $HOME/Scripts/dotfiles/packages/vscode_list.txt

# restore
pip install -r ${WHERE}/pip_list.txt

Plugins for cross-platform applications

  • Firefox

    • fire-drag
    • Surfingkeys
    • Tampermonkey
    • uBlock Origin
  • CLion

    • .ignore
    • CSV
    • EditorConfig
    • ini
    • Perl
    • Template Toolkit Support
    • Rust
    • Toml
    • PowerShell
    • R Language for IntelliJ
    • TeXiFy IDEA

About

My configuration files on macOS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Shell 53.1%
  • Perl 37.7%
  • Lua 6.4%
  • Vim Script 1.4%
  • R 1.4%