Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shelsoloa/dotfiles
My dotfiles
https://github.com/shelsoloa/dotfiles
Last synced: about 2 months ago
JSON representation
My dotfiles
- Host: GitHub
- URL: https://github.com/shelsoloa/dotfiles
- Owner: shelsoloa
- Created: 2019-10-22T23:42:33.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T19:56:40.000Z (7 months ago)
- Last Synced: 2024-06-19T01:41:54.039Z (7 months ago)
- Language: Vim Script
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Soloa DotFiles
This is a collection of my dotfiles for both Windows, Ubuntu, and OSX
## Linux Configuration
- Distro: Ubuntu
- DE: XFCE
- Shell: ZSH
- Terminal: Alacritty
- Editors: Neovim
- Tools: Antigen, Pyenv# ZSH
## On Linux
## On Mac
Install antigen through brew
```
brew install antigen
```install coreutils for aliases
```
brew install coreutils
```# Vim & NeoVim
In the default vimrc add the following lines:
Add the following lines to your rc file. For Vim the file is located at `~/.vimrc` for nvim it is located at `~/.config/nvim/init.vim`.
```
set rtp+=PATH_TO_DOTFILES_DIRECTORY
runtime base.vim
```### Complete Vim install
Install Vundle & install plugins
```
git clone git://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vimvim +PluginInstall +qall && vim
```### Complete NeoVim install:
Install Plug & install plugins
```
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimnvim +PlugInstall +qall && nvim
```