Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iaizawa0623/dotfiles
dotfiles
https://github.com/iaizawa0623/dotfiles
bash powershell vim zsh
Last synced: about 2 months ago
JSON representation
dotfiles
- Host: GitHub
- URL: https://github.com/iaizawa0623/dotfiles
- Owner: iaizawa0623
- License: mit
- Created: 2022-06-28T09:39:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T03:24:49.000Z (5 months ago)
- Last Synced: 2024-08-04T04:22:57.382Z (5 months ago)
- Topics: bash, powershell, vim, zsh
- Language: Vim Script
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 RemoteSignedecho '$script = "$Home\.profile.ps1"
if (Test-Path $script) {
. $script
}
' > $profile
```