Skip to content

Commit 7e70fbc

Browse files
prime-runkRHYME7
andauthored
add necessary Vim config (#533)
* add necessary Vim config * feat: source HyDE configs and Added wallbash theme instead * Correct psv file --------- Co-authored-by: Khing <[email protected]>
1 parent 9058c6c commit 7e70fbc

File tree

6 files changed

+1037
-0
lines changed

6 files changed

+1037
-0
lines changed

β€ŽConfigs/.config/hyde/wallbash/always/vim.dcolβ€Ž

Lines changed: 495 additions & 0 deletions
Large diffs are not rendered by default.

β€ŽConfigs/.config/vim/colors/wallbash.vimβ€Ž

Lines changed: 495 additions & 0 deletions
Large diffs are not rendered by default.

β€ŽConfigs/.config/vim/hyde.vimβ€Ž

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
" ! This is HyDE Vim configuration file. Do not edit this file directly.
2+
" ! Instead, edit the user configuration file at ' ~/.config/vim/vimrc '.
3+
" ! This file might be overwritten on updates.
4+
5+
let mapleader = " "
6+
7+
syntax on "parser
8+
9+
filetype plugin indent on
10+
11+
set number
12+
set relativenumber
13+
14+
" nvim defaults
15+
set tabstop=4
16+
set shiftwidth=4
17+
set expandtab
18+
19+
set hlsearch "hilight search, :nohl to remove
20+
21+
set t_Co=256 "terminal colors
22+
23+
set wildmenu " auto completion, trigger with <C-n>
24+
25+
26+
let s:VIM_DIR = fnamemodify($MYVIMRC, ':h')
27+
if filereadable(s:VIM_DIR . '/colors/wallbash.vim')
28+
colorscheme wallbash
29+
endif

β€ŽConfigs/.config/vim/vimrcβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
" Load the hyde config
2+
let s:VIM_DIR = fnamemodify($MYVIMRC, ':h')
3+
execute 'source ' . s:VIM_DIR . '/hyde.vim'
4+
5+
" Adding your custom colorschem
6+
"colorscheme zaibatsu "the only nice built-in colorscheme
7+
8+
" remaps
9+
"inoremap <C-c> <Esc>
10+
"nnoremap <leader>ff :w<CR>
11+
"nnoremap ; :
12+
"vnoremap ; :

β€ŽScripts/restore_cfg.lstβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ This is a punnet square of the flags, But the outputs are unexpected
3333

3434

3535
N|Y|${HOME}|.zshrc .p10k.zsh|zsh oh-my-zsh-git zsh-theme-powerlevel10k pokemon-colorscripts-git
36+
N|Y|${HOME}|.vimrc|vim
3637
N|Y|${HOME}/.config/starship|starship.toml|starship
3738
N|Y|${HOME}/.config/Code/User|settings.json|visual-studio-code-bin
3839
N|Y|${HOME}/.config/Code - OSS/User|settings.json|code

β€ŽScripts/restore_cfg.psvβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ P|${HOME}|.zshrc .hyde.zshrc .p10k.zsh|zsh
7474
P|${HOME}/.config/starship|starship.toml|starship
7575
S|${HOME}|.zshenv|zsh
7676

77+
ο‘„ Vim ο‘„
78+
P|${HOME}|.config/vim|vimrc|vim
79+
S|${HOME}|.config/vim/colors|wallbash.vim|vim
80+
S|${HOME}|.config/vim|hyde.vim|vim
81+
7782
ο‘„ File Explorer ο‘„
7883
P|${HOME}/.local/state|dolphinstaterc|dolphin
7984
P|${HOME}/.config|baloofilerc|dolphin

0 commit comments

Comments
Β (0)