Compare commits
3 Commits
826991ff92
...
1c1377c3e3
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c1377c3e3 | |||
| 2cf52e0d49 | |||
| b3d133aa28 |
@@ -21,10 +21,16 @@
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
|
||||
" yaml indentation
|
||||
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
||||
|
||||
" Start NERDTree when Vim is started without file arguments.
|
||||
autocmd StdinReadPre * let s:std_in=1
|
||||
autocmd VimEnter * if argc() == 0 && !exists('s:std_in') | NERDTree | endif
|
||||
|
||||
" Mouse support
|
||||
set mouse=a
|
||||
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
let g:airline_powerline_fonts = 1
|
||||
|
||||
@@ -38,3 +44,6 @@ Plug 'vim-airline/vim-airline'
|
||||
call plug#end()
|
||||
|
||||
nnoremap <C-b> :NERDTreeToggle<CR>
|
||||
|
||||
nnoremap <C-l> :bnext<CR>
|
||||
nnoremap <C-h> :bprevious<CR>
|
||||
|
||||
@@ -6,3 +6,5 @@
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
[init]
|
||||
defaultBranch = master
|
||||
|
||||
7
.zshrc
7
.zshrc
@@ -25,6 +25,7 @@
|
||||
export PATH=$HOME/.local/bin:$HOME/.dotnet/tools:$XDG_DATA_HOME/npm_global/bin:$PATH
|
||||
|
||||
[[ $- != *i* ]] && return
|
||||
[ -n $SSH_CONNECTION ] && source ~/.profile
|
||||
|
||||
# Oh my zsh stuff
|
||||
|
||||
@@ -60,6 +61,7 @@ DISABLE_AUTO_UPDATE=true
|
||||
ZSH_CACHE_DIR="$XDG_CACHE_HOME/oh-my-zsh" # mkdir ~/.cache/oh-my-zsh
|
||||
_Z_DATA="$XDG_CACHE_HOME/z"
|
||||
|
||||
|
||||
plugins=(
|
||||
git
|
||||
last-working-dir
|
||||
@@ -104,11 +106,12 @@ alias mixer='ncpamixer'
|
||||
alias dotfiles="git --git-dir=$XDG_DATA_HOME/dotfiles-remastered --work-tree=$HOME" # dotfile config --local status.showUntrackedFiles no
|
||||
alias open="xdg-open"
|
||||
alias mixer="pulsemixer"
|
||||
alias ssh="TERM=xterm-256color ssh"
|
||||
alias yt-dl-audio="youtube-dl --extract-audio --audio-format mp3"
|
||||
alias rm="trash"
|
||||
alias modx="chmod +x"
|
||||
alias mv="mv -iv"
|
||||
alias cp="cp -riv"
|
||||
alias mkdir="mkdir -pv"
|
||||
|
||||
alias ssh="TERM=xterm-256color ssh"
|
||||
alias yeet="sudo pacman -Rns"
|
||||
`
|
||||
|
||||
Reference in New Issue
Block a user