Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martindelille/dotfiles
My custom dotfiles
https://github.com/martindelille/dotfiles
Last synced: 3 days ago
JSON representation
My custom dotfiles
- Host: GitHub
- URL: https://github.com/martindelille/dotfiles
- Owner: MartinDelille
- License: mit
- Created: 2014-05-17T11:20:38.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-12-05T13:03:58.000Z (about 2 months ago)
- Last Synced: 2024-12-05T14:19:37.201Z (about 2 months ago)
- Language: Shell
- Size: 2.58 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles
[![Build Status](https://travis-ci.org/MartinDelille/dotfiles.svg?branch=master)](https://travis-ci.org/MartinDelille/dotfiles)
My custom dotfiles.
![Screenshot](screenshot.png)
## Features
- Bash script:
- `p` allows pinging until the network is up
- `freebox` mount the freebox hard drive on `~/freebox`
- `franceculture` starts the radio with `ffplay`
- Fish:
- Set custom config, shortcuts and functions
- Git:
- [.gitconfig](git/.gitignore):
- Basic config
- Applescript file versioning
- [.gitignore](git/.gitignore)
- [Commit signing](git/README.md#signing-commit)
- Vim:
- Set custom config and plugin (with )## Installation
```
git clone --recurse-submodules https://github.com/martindelille/dotfiles ~/.dotfiles
~/.dotfiles/dotsetup
```## Fish
If you want to use fish you need to add `/usr/local/bin/fish` to `/etc/shells` and run:
```
chsh -s $(which fish)
```## Linux
Here are the paquet required to use this *dotfiles*:
```
sudo apt-get install git
```Here are the step to install the *Powerline* font needed by the *agnoster* theme (taken from [here](https://powerline.readthedocs.org/en/latest/installation/linux.html#fonts-installation):
```
wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf
wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf
mv PowerlineSymbols.otf ~/.fonts/
fc-cache -vf ~/.fonts/
mkdir -p ~/.config/fontconfig/conf.d/
mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/
```