Reorganize some files, add color for ls
This commit is contained in:
parent
547d795d6b
commit
0e8b985c38
@ -14,7 +14,6 @@ dotfiles_dir = "src/dotfiles"
|
||||
# and `target` shall be relative to $HOME directory or absolute.
|
||||
# You can have as many dot entry as you want, linking files or directories
|
||||
alacritty = { source = "alacritty", target = ".config/alacritty" }
|
||||
nvim = { source = "nvim", target = ".config/nvim" }
|
||||
sway = { source = "sway", target = ".config/sway" }
|
||||
waybar = { source = "waybar", target = ".config/waybar" }
|
||||
wofi = { source = "wofi", target = ".config/wofi" }
|
||||
@ -22,12 +21,9 @@ wofi = { source = "wofi", target = ".config/wofi" }
|
||||
# zsh
|
||||
p10k = { source = "zsh/p10k.zsh", target = ".p10k.zsh" }
|
||||
zsh = { source = "zsh/zsh", target = ".zsh", ignore = [ ".keep" ] }
|
||||
zsh_aliases = { source = "zsh/zsh_aliases", target = ".zsh_aliases" }
|
||||
zshenv = { source = "zsh/zshenv", target = ".zshenv" }
|
||||
zshrc = { source = "zsh/zshrc", target = ".zshrc" }
|
||||
|
||||
# vim
|
||||
nvim = { source = "nvim", target = ".config/nvim" }
|
||||
vimrc = { source = "vim/vimrc", target = ".vimrc" }
|
||||
vimrc_colors = { source = "vim/vimrc.colors", target = ".vimrc.colors" }
|
||||
vimrc_lightline = { source = "vim/vimrc.lightline", target = ".vimrc.lightline" }
|
||||
vimrc_plugins = { source = "vim/vimrc.plugins", target = ".vimrc.plugins" }
|
||||
|
@ -18,6 +18,11 @@ function! s:sonokai_custom() abort
|
||||
call sonokai#highlight('SignColumn', l:palette.fg, l:palette.bg1)
|
||||
call sonokai#highlight('VertSplit', l:palette.bg1, l:palette.none)
|
||||
call sonokai#highlight('Terminal', l:palette.fg, l:palette.bg1)
|
||||
"call sonokai#highlight('CocGitAddedSign', l:palette.fg, l:palette.bg1)
|
||||
"call sonokai#highlight('CocGitChangedSign', l:palette.fg, l:palette.bg1)
|
||||
"call sonokai#highlight('CocGitRemovedSign', l:palette.fg, l:palette.bg1)
|
||||
"call sonokai#highlight('CocGitTopRemovedSign', l:palette.fg, l:palette.bg1)
|
||||
"call sonokai#highlight('CocGitChangeRemovedSign', l:palette.fg, l:palette.bg1)
|
||||
endfunction
|
||||
|
||||
augroup CustomColors
|
12
vim/vimrc
12
vim/vimrc
@ -68,19 +68,19 @@ endfunction
|
||||
|
||||
" Plugins
|
||||
call plug#begin('~/.vim/plugged')
|
||||
if filereadable(expand("~/.vimrc.plugins"))
|
||||
source ~/.vimrc.plugins
|
||||
if filereadable(expand("~/.config/nvim/plugins"))
|
||||
source ~/.config/nvim/plugins
|
||||
endif
|
||||
call plug#end()
|
||||
|
||||
" Lightline setup
|
||||
if filereadable(expand("~/.vimrc.lightline"))
|
||||
source ~/.vimrc.lightline
|
||||
if filereadable(expand("~/.config/nvim/lightline"))
|
||||
source ~/.config/nvim/lightline
|
||||
endif
|
||||
|
||||
" Color setup
|
||||
if filereadable(expand("~/.vimrc.colors"))
|
||||
source ~/.vimrc.colors
|
||||
if filereadable(expand("~/.config/nvim/colors"))
|
||||
source ~/.config/nvim/colors
|
||||
endif
|
||||
|
||||
" Set secure AFTER any other rc importing
|
||||
|
2
zsh/zsh/aliases
Normal file
2
zsh/zsh/aliases
Normal file
@ -0,0 +1,2 @@
|
||||
alias e="$EDITOR"
|
||||
alias ls="ls --color"
|
@ -1 +0,0 @@
|
||||
alias e="$EDITOR"
|
Loading…
x
Reference in New Issue
Block a user