All Projects β†’ alrra β†’ Dotfiles

alrra / Dotfiles

Licence: mit
πŸ’» macOS / Ubuntu dotfiles

Programming Languages

shell
77523 projects
bash
514 projects

Projects that are alternatives of or similar to Dotfiles

dotfiles
My dotfiles
Stars: ✭ 16 (-98.51%)
Mutual labels:  dotfiles, tmux, snippets
Dotfiles
Dotfiles
Stars: ✭ 117 (-89.11%)
Mutual labels:  tmux, dotfiles, ubuntu
Idempotent Desktop
πŸ›Έ NixOS, Xmonad, Neovim
Stars: ✭ 51 (-95.25%)
Mutual labels:  tmux, dotfiles
Dotfiles
My dotfiles πŸ’» πŸ”¨
Stars: ✭ 25 (-97.67%)
Mutual labels:  tmux, dotfiles
Dotfiles
My bash, tmux, and vim configs
Stars: ✭ 14 (-98.7%)
Mutual labels:  tmux, dotfiles
Dotfiles
A repository that gathered files starting with dot
Stars: ✭ 701 (-34.73%)
Mutual labels:  tmux, dotfiles
Dotfiles
My dotfiles.
Stars: ✭ 5 (-99.53%)
Mutual labels:  tmux, dotfiles
Dotfiles
My dotfiles, mainly Ubuntu and OSX stuff
Stars: ✭ 12 (-98.88%)
Mutual labels:  dotfiles, ubuntu
Dotfiles
πŸ’Ύ Ian's dotfiles, utils, and Zsh/Vim/tmux configs
Stars: ✭ 554 (-48.42%)
Mutual labels:  tmux, dotfiles
Dotconfig
Development environment setup
Stars: ✭ 27 (-97.49%)
Mutual labels:  tmux, dotfiles
Dotfiles
`~/dotfiles` to setup my dev env on macOS based around `neovim` and `tmux`
Stars: ✭ 20 (-98.14%)
Mutual labels:  tmux, dotfiles
Dotfiles
Get ready for dotfiles. Contains i3, i3blocks, rofi, dunst, picom, vim, tmux, and zsh.
Stars: ✭ 985 (-8.29%)
Mutual labels:  tmux, dotfiles
Dotfiles
i3 + Plasma: using the i3 window manager on the top of KDE Plasma and other dotfiles, configurations, scripts, workarounds and practises from my Debian Sid machines.
Stars: ✭ 651 (-39.39%)
Mutual labels:  tmux, dotfiles
Jarvis
Dotfiles for a powerful, web development-focused environment powered by Neovim, iTerm2, tmux, and zsh
Stars: ✭ 617 (-42.55%)
Mutual labels:  tmux, dotfiles
Takumi
Takumi, clean and elegant dotfiles
Stars: ✭ 22 (-97.95%)
Mutual labels:  tmux, dotfiles
Dotfiles
Dotfiles for unix, managed by GNU stow.
Stars: ✭ 617 (-42.55%)
Mutual labels:  tmux, dotfiles
Dotfiles
πŸ”˜ neovim, zsh, tmux, iTerm2, macOS dotfiles
Stars: ✭ 7 (-99.35%)
Mutual labels:  tmux, dotfiles
Dotfiles
My dotfiles πŸš€. Includes configs for neovim, tmux, zsh, alacritty and more.
Stars: ✭ 47 (-95.62%)
Mutual labels:  tmux, dotfiles
Dotfiles
β—πŸ“„ Ryan McGeary's configuration shiznit that makes him productive
Stars: ✭ 278 (-74.12%)
Mutual labels:  tmux, dotfiles
Dotfiles
Setup and install scripts for a new machine + dotfiles for various apps. Linux, Mac, and Mac (Amazon specific) branches are included.
Stars: ✭ 382 (-64.43%)
Mutual labels:  dotfiles, snippets

CΔƒtΔƒlin’s dotfiles

CI status for macOS CI status for Ubuntu

These are the base dotfiles that I start with when I set up a new environment. For more specific local needs I use the *.local files described in the Local Settings section.

Table of Contents

Setup

To set up the dotfiles run the appropriate snippet in the terminal:

(⚠️ DO NOT run the setup snippet if you do not fully understand what it does. Seriously, DON'T!)

OS Snippet
macOS bash -c "$(curl -LsS https://raw.github.com/alrra/dotfiles/main/src/os/setup.sh)"
Ubuntu bash -c "$(wget -qO - https://raw.github.com/alrra/dotfiles/main/src/os/setup.sh)"

That's it! ✨

The setup process will:

Setup process in action:

Setup process on macOS Setup process on Ubuntu
macOS Ubuntu

Customize

Local Settings

The dotfiles can be easily extended to suit additional local requirements by using the following files:

~/.bash.local

The ~/.bash.local file will be automatically sourced after all the other Bash related files, thus, allowing its content to add to or overwrite the existing aliases, settings, PATH, etc.

Here is an example:

#!/bin/bash

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set PATH additions.

PATH="/Users/alrra/projects/dotfiles/src/bin/:$PATH"

export PATH

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set local aliases.

alias g="git"

~/.gitconfig.local

The ~/.gitconfig.local file will be automatically included after the configurations from ~/.gitconfig, thus, allowing its content to overwrite or add to the existing Git configurations.

Note: Use ~/.gitconfig.local to store sensitive information such as the Git user credentials, e.g.:

[commit]

    # Sign commits using GPG.
    # https://help.github.com/articles/signing-commits-using-gpg/

    gpgSign = true

[user]

    name = Cătălin Mariș
    email = [email protected]
    signingKey = XXXXXXXX

~/.vimrc.local

The ~/.vimrc.local file will be automatically sourced after ~/.vimrc, thus, allowing its content to add or overwrite the settings from ~/.vimrc.

Here is an example:

" Disable arrow keys in insert mode.

inoremap <Down>  <ESC>:echoe "Use j"<CR>
inoremap <Left>  <ESC>:echoe "Use h"<CR>
inoremap <Right> <ESC>:echoe "Use l"<CR>
inoremap <Up>    <ESC>:echoe "Use k"<CR>

" Disable arrow keys in normal mode.

nnoremap <Down>  :echoe "Use j"<CR>
nnoremap <Left>  :echoe "Use h"<CR>
nnoremap <Right> :echoe "Use l"<CR>
nnoremap <Up>    :echoe "Use k"<CR>

Forks

If you decide to fork this project, do not forget to substitute my username with your own in the setup snippets and in the setup script.

Update

To update the dotfiles you can either run the setup script or, if you want to update one particular part, run the appropriate os script.

Screenshots

Git

Output for git status:

Output for Git status on macOS Output for Git status on Ubuntu
macOS Ubuntu

Output for git log:

Output for Git log on macOS Output for Git log on Ubuntu
macOS Ubuntu

tmux & Vim

tmux and Vim on macOS tmux and Vim on Ubuntu
macOS Ubuntu

License

The code is available under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].