Compare commits
4 Commits
fcb1469297
...
9297830bcf
Author | SHA1 | Date |
---|---|---|
Hektor Misplon | 9297830bcf | |
Hektor Misplon | d93fb7fb2a | |
Hektor Misplon | 37eeb40184 | |
Hektor Misplon | 4f0106ca03 |
5
.bashrc
5
.bashrc
|
@ -1,7 +1,6 @@
|
|||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc
|
||||
|
||||
source /etc/os-release
|
||||
|
||||
|
@ -113,6 +112,10 @@ source /usr/share/nvm/bash_completion
|
|||
source /usr/share/nvm/install-nvm-exec
|
||||
# }}}
|
||||
|
||||
# Go {{{
|
||||
export GOPATH="${XDG_DATA_HOME}/go"
|
||||
# }}}
|
||||
|
||||
# Jupyter {{{
|
||||
export JUPYTERLAB_DIR=$HOME/.local/share/jupyter/lab
|
||||
# }}}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
vim.cmd([[
|
||||
set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
||||
let &packpath = &runtimepath
|
||||
source ~/.vimrc
|
||||
source ~/.vimrc"
|
||||
]])
|
|
@ -1,6 +1,8 @@
|
|||
# General
|
||||
|
||||
set -g prefix C-Space
|
||||
unbind C-b
|
||||
set -g prefix C-a
|
||||
bind-key C-a send-prefix
|
||||
set -g base-index 1
|
||||
|
||||
setw -g monitor-activity on
|
||||
|
|
Loading…
Reference in New Issue