Browse Source

.Xmodmap and gitg alias

master
arnaucube 5 years ago
parent
commit
d16876e701
3 changed files with 23 additions and 6 deletions
  1. +9
    -0
      .Xmodmap
  2. +4
    -0
      .bashrc
  3. +10
    -6
      README.md

+ 9
- 0
.Xmodmap

@ -0,0 +1,9 @@
!
! Swap Caps_Lock and Control_L
!
remove Lock = Caps_Lock
remove Control = Control_L
keysym Control_L = Caps_Lock
keysym Caps_Lock = Control_L
add Lock = Caps_Lock
add Control = Control_L

+ 4
- 0
.bashrc

@ -16,8 +16,12 @@ else
fi
unset color_prompt force_color_prompt
# gitg branch views, line from https://gitlab.com/dhole/dot_files/blob/master/.bash_aliases#L39
alias gitg="git log --color --graph --abbrev-commit --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %Cgreen(%ar)%C(cyan) %an<%ae>%Creset'"
# nvim alias
alias n='nvim'
alias t='tmux'
# go
export PATH=$PATH:/usr/local/go/bin

+ 10
- 6
README.md

@ -3,11 +3,15 @@ config files
- NeoVim: `init.vim`
- in `.config/nvim/init.vim`
- install https://github.com/junegunn/vim-plug
- inside neovim, execute: `:PlugInstall`
- in `.config/nvim/init.vim`
- install https://github.com/junegunn/vim-plug
- inside neovim, execute: `:PlugInstall`
- `.bashrc`
- in `~/home` directory
- execute `source .bashrc`
- in `~/home` directory
- execute `source .bashrc`
- Tmux: `.tmux.conf`
- in `~/home` directory
- in `~/home` directory
- Keyboard remap `.Xmodmap`
- in `~/home`
- changes will be applied each session start
- to apply changes in the current session use `xmodmap ~/.Xmodmap`

Loading…
Cancel
Save