Some notes for tricky things I've run into while packaging things for Nix...
There is a code search available here. It's considerably more useful and accurate than GitHub's search.
This article explains that.
Some notes for tricky things I've run into while packaging things for Nix...
There is a code search available here. It's considerably more useful and accurate than GitHub's search.
This article explains that.
| globals: | |
| # Path to the ocio config to use | |
| ocioconfig: /path/to/config.ocio | |
| # Default ocio profile to use if not specified on the commandline | |
| ocio_default_transform: grade | |
| ############################################### | |
| ## Reformatting and Cropping | |
| ############################################### | |
| # If debug is true, no encoding will be done and there will be debug prints |
| ----------------------------- BUNDLE ------------------------------------ | |
| " Plugin Manager: vim-plug | |
| " Specify a directory for plugins (for Neovim: ~/.local/share/nvim/plugged) | |
| call plug#begin('~/.local/share/nvim/plugged') | |
| " Make sure you use single quotes | |
| " Deoplete is the abbreviation of "dark powered neo-completion". | |
| " It provides an asynchronous keyword completion system in the current buffer. | |
| Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } |
| sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-common vim-gui-common | |
| sudo apt-get build-dep vim-gnome | |
| sudo apt-get install liblua5.1-dev luajit libluajit-5.1 python-dev ruby-dev libperl-dev mercurial libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev | |
| sudo rm -rf /usr/local/share/vim | |
| sudo rm /usr/bin/vim | |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # Script for installing tmux on systems where you don't have root access. | |
| # tmux will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| TMUX_VERSION=1.8 |