Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iaizawa0623/dotfiles

dotfiles
https://github.com/iaizawa0623/dotfiles

bash powershell vim zsh

Last synced: about 2 months ago
JSON representation

dotfiles

Awesome Lists containing this project

README

        

# dotfiles

## .zshrc
https://github.com/romkatv/powerlevel10k

## .vimrc
```
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```

## profile.ps1
```
Set-ExecutionPolicy RemoteSigned

echo '$script = "$Home\.profile.ps1"

if (Test-Path $script) {
. $script
}
' > $profile
```