diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-03-20 20:36:55 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-03-20 20:36:55 +0700 |
commit | 82543950fb2839b94402b4bffa234e6a764dc8f4 (patch) | |
tree | def06a6d224f73b06db6c0e9432f956b95b7b8e5 | |
parent | ac9a1ae1b0dfc0bbc3554da111cfc6e35509a2a9 (diff) | |
download | dotfiles-82543950fb2839b94402b4bffa234e6a764dc8f4.tar.gz |
Start learning Zig and Hare
-rw-r--r-- | debian/.profile | 3 | ||||
-rw-r--r-- | dev/.config/htop/htoprc | 2 | ||||
-rwxr-xr-x | vim/.vim/vimrc | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/debian/.profile b/debian/.profile index f58b1fa..8c9ecbd 100644 --- a/debian/.profile +++ b/debian/.profile @@ -9,8 +9,9 @@ #umask 022 export GOPATH="$HOME/.local/share/go" -export PATH="$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.luarocks/bin:$PATH" +export PATH="$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.luarocks/bin:$HOME/.zig:$PATH" export MANPATH="$HOME/.local/share/man:$MANPATH" +export HAREPATH="$HOME/Salsa/lang/hare" export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" export XMODIFIERS=@im=ibus export QT_IM_MODULE=ibus diff --git a/dev/.config/htop/htoprc b/dev/.config/htop/htoprc index 0a481c9..44afee9 100644 --- a/dev/.config/htop/htoprc +++ b/dev/.config/htop/htoprc @@ -2,7 +2,7 @@ # The parser is also very primitive, and not human-friendly. fields=0 48 17 18 38 39 40 2 46 47 49 1 sort_key=47 -sort_direction=1 +sort_direction=-1 tree_sort_key=0 tree_sort_direction=1 hide_kernel_threads=1 diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 08a07a2..dbec673 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -55,6 +55,7 @@ Plug 'https://github.com/kovisoft/slimv', {'for': 'lisp'} Plug 'https://github.com/anntzer/vim-cython', {'for': 'cython'} Plug 'https://github.com/racer-rust/vim-racer', {'for': 'rust'} Plug 'https://github.com/rhysd/rust-doc.vim', {'for': 'rust'} +Plug 'https://git.sr.ht/~sircmpwn/hare.vim', {'for': 'hare'} call plug#end() set t_Co=256 |