add: vim plugins
fix: aliases sourcing wrong file add: rofi run mode
This commit is contained in:
parent
a365154e80
commit
4601141aa6
4 changed files with 6 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
alias aliases='vim ~/.bash_aliases && bashrc-reload'
|
||||
alias bashrc-reload='source ~/.bashrc'
|
||||
alias aliases='vim ~/.config/aliasrc && source ~/.config/aliasrc'
|
||||
|
||||
alias df='df -h'
|
||||
|
||||
|
@ -21,6 +20,7 @@ alias ls='ls -Flh --color=never'
|
|||
|
||||
alias lsblk='lsblk -o +PARTLABEL -o +FSTYPE'
|
||||
|
||||
alias make='make --no-print-directory'
|
||||
alias md5='ms5'
|
||||
alias md5sum-dir='function _md5sum-dir(){ find $1 -type f -exec md5sum {} \; | md5sum; }; _md5sum-dir'
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ bspc monitor HDMI-1 -d 01 02 03 04 05 06 07
|
|||
bspc monitor DVI-D-1 -d 08 09 10
|
||||
|
||||
bspc desktop ^1 --layout monocle
|
||||
bspc desktop ^7 --layout monocle
|
||||
bspc desktop ^9 --layout monocle
|
||||
bspc desktop ^10 --layout monocle
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
rofi.combi-modi: window,drun,ssh
|
||||
rofi.font: hack 10
|
||||
rofi.modi: combi,ssh
|
||||
rofi.modi: combi,ssh,run
|
||||
rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi
|
||||
|
||||
rofi.ssh-command: {terminal} -e bash -ic "ssh-sftp {host} [-p {port}];"
|
||||
|
|
|
@ -35,6 +35,8 @@ call plug#begin('~/.config/vim/plugged')
|
|||
Plug 'scrooloose/syntastic'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'sersorrel/vim-lilypond'
|
||||
Plug 'vim-scripts/DoxygenToolkit.vim'
|
||||
Plug 'drmikehenry/vim-headerguard'
|
||||
call plug#end()
|
||||
|
||||
" Nerd Tree Configuration
|
||||
|
|
Loading…
Reference in a new issue