Compare commits
5 Commits
thinkpad-t
...
octoprint
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7ff4ec9c2 | ||
| 13948bcc19 | |||
| b66e8b84b1 | |||
| db8aee645e | |||
| 62a7d969d6 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
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" && -d "$dn/.git" ]] || continue
|
[[ -d "$dn" ]] || continue
|
||||||
eval "${1//@@/$dn}" | colors
|
eval "${1//@@/$dn}" | colors
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
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-git https://github.com/Xuyuanp/nerdtree-git-plugin.git
|
|
||||||
nerdtree https://github.com/preservim/nerdtree.git
|
nerdtree https://github.com/preservim/nerdtree.git
|
||||||
nim https://github.com/zah/nim.vim.git
|
nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.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
|
||||||
terraform https://github.com/hashivim/vim-terraform.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
|
|
||||||
vlang https://github.com/ollykel/v-vim.git
|
|
||||||
zig https://github.com/ziglang/zig.vim.git
|
|
||||||
|
|||||||
6
vimrc
6
vimrc
@@ -4,11 +4,13 @@ set modeline
|
|||||||
set background=dark
|
set background=dark
|
||||||
set shell=/bin/bash
|
set shell=/bin/bash
|
||||||
set splitbelow
|
set splitbelow
|
||||||
|
set splitright
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
set gfn=DejaVu\ Sans\ Mono\ 16
|
set gfn=Iosevka\ Medium\ 20
|
||||||
colorscheme torte
|
colorscheme solarized
|
||||||
|
let g:solarized_menu=0
|
||||||
else
|
else
|
||||||
colorscheme torte
|
colorscheme torte
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user