Compare commits
6 Commits
octoprint
...
thinkpad-t
| Author | SHA1 | Date | |
|---|---|---|---|
| ebe86c0ba3 | |||
| 48836e6dbc | |||
| 3401e15a27 | |||
| 36d287c729 | |||
| a7bd19bd52 | |||
| 6c0b577a9f |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
bundle/*
|
bundle/*
|
||||||
|
.netrwhist
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ repos() {
|
|||||||
# Eval "$1" for all directories
|
# Eval "$1" for all directories
|
||||||
local dn
|
local dn
|
||||||
for dn in * ; do
|
for dn in * ; do
|
||||||
[[ -d "$dn" ]] || continue
|
[[ -d "$dn" && -d "$dn/.git" ]] || continue
|
||||||
eval "${1//@@/$dn}" | colors
|
eval "${1//@@/$dn}" | colors
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
dockerfile-syntax https://github.com/ekalinin/Dockerfile.vim.git
|
dockerfile-syntax https://github.com/ekalinin/Dockerfile.vim.git
|
||||||
fugitive https://github.com/tpope/vim-fugitive.git
|
fugitive https://github.com/tpope/vim-fugitive.git
|
||||||
nerdtree https://github.com/preservim/nerdtree.git
|
|
||||||
nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.git
|
nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.git
|
||||||
|
nerdtree https://github.com/preservim/nerdtree.git
|
||||||
nim https://github.com/zah/nim.vim.git
|
nim https://github.com/zah/nim.vim.git
|
||||||
solarized https://github.com/altercation/vim-colors-solarized.git
|
solarized https://github.com/altercation/vim-colors-solarized.git
|
||||||
syntastic https://github.com/vim-syntastic/syntastic.git
|
syntastic https://github.com/vim-syntastic/syntastic.git
|
||||||
@@ -9,4 +9,5 @@ terraform https://github.com/hashivim/vim-terraform.git
|
|||||||
terragrunt https://github.com/yorinasub17/vim-terragrunt.git
|
terragrunt https://github.com/yorinasub17/vim-terragrunt.git
|
||||||
toml-syntax https://github.com/cespare/vim-toml.git
|
toml-syntax https://github.com/cespare/vim-toml.git
|
||||||
vcl-vim-plugin https://github.com/smerrill/vcl-vim-plugin
|
vcl-vim-plugin https://github.com/smerrill/vcl-vim-plugin
|
||||||
|
vlang https://github.com/ollykel/v-vim.git
|
||||||
zig https://github.com/ziglang/zig.vim.git
|
zig https://github.com/ziglang/zig.vim.git
|
||||||
|
|||||||
6
vimrc
6
vimrc
@@ -7,9 +7,8 @@ set splitbelow
|
|||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
set gfn=Iosevka\ Medium\ 15
|
set gfn=DejaVu\ Sans\ Mono\ 16
|
||||||
colorscheme solarized
|
colorscheme torte
|
||||||
let g:solarized_menu=0
|
|
||||||
else
|
else
|
||||||
colorscheme torte
|
colorscheme torte
|
||||||
endif
|
endif
|
||||||
@@ -30,4 +29,3 @@ func! WordProcessor()
|
|||||||
set complete+=s
|
set complete+=s
|
||||||
endfu
|
endfu
|
||||||
com! WP call WordProcessor()
|
com! WP call WordProcessor()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user