5 Commits

Author SHA1 Message Date
octoprint c7ff4ec9c2 Simplify requirements for this host 2023-07-10 17:35:41 -07:00
gcordova 13948bcc19 Add 'supertab' to the bundles 2023-02-07 13:56:30 -08:00
gcordova b66e8b84b1 Add 'splitright' to go along with 'splitbelow' 2023-02-07 13:56:20 -08:00
gcordova db8aee645e Remove trailing empty line 2022-12-29 10:55:59 -08:00
gcordova 62a7d969d6 Increase graphical font size to 20 2022-11-02 15:17:57 -07:00
2 changed files with 2 additions and 8 deletions
-6
View File
@@ -1,12 +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 https://github.com/preservim/nerdtree.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
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
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
zig https://github.com/ziglang/zig.vim.git
+2 -2
View File
@@ -4,10 +4,11 @@ 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=Iosevka\ Medium\ 15 set gfn=Iosevka\ Medium\ 20
colorscheme solarized colorscheme solarized
let g:solarized_menu=0 let g:solarized_menu=0
else else
@@ -30,4 +31,3 @@ func! WordProcessor()
set complete+=s set complete+=s
endfu endfu
com! WP call WordProcessor() com! WP call WordProcessor()