Skip to content

Commit 607380c

Browse files
committed
Merge branch 'feature/vim' into develop
2 parents 0e063fa + 6224e33 commit 607380c

File tree

4 files changed

+46
-2
lines changed

4 files changed

+46
-2
lines changed

java/intellij/.ideavimrc

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
set clipboard+=unnamed,unnamedplus
2+
3+
sethandler <S-CR> a:ide
4+
sethandler <S-Left> a:ide
5+
sethandler <S-Up> a:ide
6+
sethandler <S-Right> a:ide
7+
sethandler <S-Down> a:ide
8+
sethandler <C-2> a:ide
9+
sethandler <C-S-2> a:ide
10+
sethandler <C-6> a:ide
11+
sethandler <C-S-6> a:ide
12+
sethandler <C-A> a:ide
13+
sethandler <C-B> a:ide
14+
sethandler <C-C> a:ide
15+
sethandler <C-D> a:ide
16+
sethandler <C-E> a:ide
17+
sethandler <C-F> a:ide
18+
sethandler <C-G> a:ide
19+
sethandler <C-H> a:ide
20+
sethandler <C-I> a:ide
21+
sethandler <C-J> a:ide
22+
sethandler <C-K> a:ide
23+
sethandler <C-L> a:ide
24+
sethandler <C-M> a:ide
25+
sethandler <C-N> a:ide
26+
sethandler <C-O> a:ide
27+
sethandler <C-P> a:ide
28+
sethandler <C-R> a:ide
29+
sethandler <C-S> a:ide
30+
sethandler <C-T> a:ide
31+
sethandler <C-V> a:ide
32+
sethandler <C-W> a:ide

linux/bash-commands.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ command -v ll
2121
function sudo() { echo "+ sudo ${@}">&2; command sudo "${@}"; }
2222
function make() { echo "+ make ${@}">&2; command make "${@}"; }
2323

24+
which -a vim
25+
2426
### watch
2527
watch -x bash -ic "my-alias"
2628
alias watch="watch "

linux/neovim/init.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
syntax on
21
set termguicolors
3-
set background=dark
2+
highlight Normal guibg=#1E1E1E guifg=#D4D4D4
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
######################################################################
2+
3+
set termguicolors
4+
set background=dark
5+
6+
######################################################################
7+
8+
set termguicolors
9+
highlight Normal guibg=#1E1E1E guifg=#D4D4D4
10+
11+
######################################################################

0 commit comments

Comments
 (0)