-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matsui Masashi
committed
Feb 26, 2021
1 parent
0d6fb45
commit 66fd7c8
Showing
4 changed files
with
57 additions
and
15 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
if [ -f ~/.bash_aliases ]; then | ||
. ~/.bash_aliases | ||
if [ -f ~/.aliases ]; then | ||
. ~/.aliases | ||
fi | ||
|
||
export PATH="$HOME/.anyenv/bin:$PATH" | ||
eval "$(anyenv init -)" | ||
export PATH="$HOME/.anyenv/bin:$HOME/.cargo/bin:$HOME/go/1.16beta1/bin:$PATH" | ||
eval "$(starship init bash)" | ||
eval "$(anyenv init -)" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
set fenc=utf-8 | ||
set ambiwidth=double | ||
set nobackup | ||
set noswapfile | ||
set autoread | ||
|
||
set showcmd | ||
set laststatus=2 | ||
set visualbell | ||
set display=lastline | ||
set pumheight=10 | ||
|
||
syntax enable | ||
set number | ||
" set cursorline | ||
" set cursorcolumn | ||
set showmatch | ||
set matchtime=1 | ||
|
||
set smartindent | ||
set expandtab | ||
set shiftwidth=4 | ||
set tabstop=4 | ||
|
||
set ignorecase | ||
set smartcase | ||
set incsearch | ||
set wrapscan | ||
set hlsearch | ||
set showmatch | ||
|
||
nmap <Esc><Esc> :nohlsearch<CR><Esc> | ||
nnoremap Y y$ | ||
nnoremap + <C-a> | ||
nnoremap - <C-x> | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
if [ -f ~/.bash_aliases ]; then | ||
. ~/.bash_aliases | ||
if [ -f ~/.aliases ]; then | ||
. ~/.aliases | ||
fi | ||
|
||
export PATH="/usr/local/opt/curl/bin:$PATH" | ||
export LDFLAGS="-L/usr/local/opt/curl/lib" | ||
export CPPFLAGS="-I/usr/local/opt/curl/include" | ||
|
||
export PATH="$HOME/.anyenv/bin:$PATH" | ||
eval "$(anyenv init -)" | ||
export PATH="$HOME/.anyenv/bin:$HOME/.cargo/bin:$HOME/go/1.16beta1/bin:$PATH" | ||
eval "$(starship init zsh)" | ||
eval "$(anyenv init -)" | ||
|