This commit is contained in:
Henrik Bakken
2020-06-15 13:32:50 +02:00
parent 761fbccaac
commit 0e06968ef8
4 changed files with 18 additions and 13 deletions
+1 -1
View File
@@ -13,7 +13,7 @@
* set shell to 'fish' via `bmenu` * set shell to 'fish' via `bmenu`
* replace caps with esc `setxkbmap -option 'caps:escape` * replace caps with esc `setxkbmap -option 'caps:escape`
* nvidia * nvidia
* `sudo pacman -S cuda` * `sudo pacman -S cuda cudnn`
* `yay nvidia-vulkan` * `yay nvidia-vulkan`
# python # python
+2
View File
@@ -190,6 +190,8 @@ nmap <silent> <C-Right> :execute 'silent! tabmove ' . (tabpagenr()+1)<cr>
nmap <C-p>g :GitFiles<ENTER> nmap <C-p>g :GitFiles<ENTER>
nmap <C-p>f :Files<ENTER> nmap <C-p>f :Files<ENTER>
nmap <C-p>l :Fag<ENTER> nmap <C-p>l :Fag<ENTER>
nmap <C-p>L :Lines<ENTER>
nmap <C-p>r :Rg<ENTER>
nmap <C-p>b :Buffers<ENTER> nmap <C-p>b :Buffers<ENTER>
nmap <C-p>c :Commands<ENTER> nmap <C-p>c :Commands<ENTER>
nmap <C-p>t :Colors<ENTER> nmap <C-p>t :Colors<ENTER>
+1 -1
View File
@@ -9,7 +9,7 @@ export PYTHONBREAKPOINT=ipdb.set_trace
# cuda stuff # cuda stuff
export CUDA_HOME=/opt/cuda export CUDA_HOME=/opt/cuda
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${CUDA_HOME}/lib64 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${CUDA_HOME}/lib64
PATH=${CUDA_HOME}/bin:${PATH} PATH=${CUDA_HOME}/bin:/home/hjalmarlucius/.local/bin/:${PATH}
export PATH export PATH
# MKL AMD fix # MKL AMD fix
+6 -3
View File
@@ -1,6 +1,9 @@
###################### ######################
### SETTINGS ### ### SETTINGS ###
###################### ######################
# escape time
set -sg escape-time 0
# loud or quiet? # loud or quiet?
set -g visual-activity off set -g visual-activity off
set -g visual-bell off set -g visual-bell off
@@ -159,7 +162,7 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'sainnhe/tmux-fzf' set -g @plugin 'sainnhe/tmux-fzf'
# note: fzf bound to 'F' # note: fzf bound to 'F'
set -g @plugin 'odedlaz/tmux-onedark-theme' #set -g @plugin 'odedlaz/tmux-onedark-theme'
# solarized plugin and options # solarized plugin and options
#set -g @plugin 'seebi/tmux-colors-solarized' #set -g @plugin 'seebi/tmux-colors-solarized'
@@ -169,14 +172,14 @@ set -g @plugin 'odedlaz/tmux-onedark-theme'
#set -g @colors-solarized 'base16' #set -g @colors-solarized 'base16'
# tmux themepack # tmux themepack
# set -g @plugin 'jimeh/tmux-themepack' set -g @plugin 'jimeh/tmux-themepack'
#set -g @themepack 'basic' #set -g @themepack 'basic'
#set -g @themepack 'powerline/default/yellow' #set -g @themepack 'powerline/default/yellow'
#set -g @themepack 'powerline/default/orange' #set -g @themepack 'powerline/default/orange'
#set -g @themepack 'powerline/block/blue' #set -g @themepack 'powerline/block/blue'
#set -g @themepack 'powerline/block/cyan' #set -g @themepack 'powerline/block/cyan'
#set -g @themepack 'powerline/default/gray' #set -g @themepack 'powerline/default/gray'
# set -g @themepack 'powerline/double/yellow' set -g @themepack 'powerline/double/yellow'
# keep at bottom # keep at bottom
run -b '~/.tmux/plugins/tpm/tpm' run -b '~/.tmux/plugins/tpm/tpm'