This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
excludesfile = /Users/vgarkadov/.gitignore_global | |
autocrlf = input | |
[user] | |
name = Vadim Arkadov | |
email = [email protected] | |
[remote "origin"] | |
prune = true | |
[filter "lfs"] | |
process = git-lfs filter-process |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adasadf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader = "," | |
set easymotion | |
set surround | |
set visualbell | |
set noerrorbells | |
set is | |
set hlsearch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
export PATH=node_modules/.bin:$HOME/bin:/usr/local/bin:$HOME/.nvm/versions/node/v16.16.1/bin:$PATH | |
export LANG=en_US.UTF-8 | |
# Go lang | |
export GOPATH=$HOME/go | |
export GOBIN=$GOPATH/bin | |
export PATH=$PATH:/usr/local/go/bin:$GOBIN | |
# zsh_autosuggest plugin config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turn on vim mode | |
fish_vi_key_bindings | |
# Key bindings | |
function fish_user_key_bindings | |
bind -M insert \cp history-search-backward | |
bind -M insert \cn history-search-forward | |
bind -M insert \cf forward-char | |
# for mode in insert default visual |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader = "," | |
" set visualbell | |
" be iMproved, required | |
set nocompatible | |
" required | |
filetype off | |
" top offset for z + <enter> | |
set scrolloff=5 | |
" show lines numbers | |
set number |