https://github.com/ilsenem/dotfiles
That's pretty obvious...
https://github.com/ilsenem/dotfiles
dotfiles dotfiles-macos kitty neovim oh-my-posh stow zsh
Last synced: 7 months ago
JSON representation
That's pretty obvious...
- Host: GitHub
- URL: https://github.com/ilsenem/dotfiles
- Owner: ilsenem
- Created: 2024-07-18T19:58:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-16T21:07:45.000Z (about 1 year ago)
- Last Synced: 2025-01-17T08:45:33.608Z (9 months ago)
- Topics: dotfiles, dotfiles-macos, kitty, neovim, oh-my-posh, stow, zsh
- Language: Lua
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotfiles
## Description
Installs basic configs for Kitty, Nvim and couple useful tools.
## Requirements
### OS
Tested on MacOS only.
### Fonts
FiraCode Nerd Mono is great for this whole configuration:
```bash
brew install font-fira-code-nerd-font
```### Tools
* ZSH
```bash
brew install zsh
chsh -s $(which zsh)
```* Oh-My-Posh
```bash
brew install jandedobbeleer/oh-my-posh/oh-my-posh
```* FZF
```bash
brew install fzf
```* Zoxide
```bash
brew install zoxide* Bat
```bash
brew install bat
```* NeoVim
```bash
brew install neovim
```* Kitty
```bash
brew install kitty
```Additional tools may be required such as:
* PHP
* NodeJS
* ...## Management
### Stow
Stow is the package manager for configuration files. Install it:
```bash
brew install stow
```Close this repo in the home dir:
```bash
cd ~/
git clone git@github.com:ilsenem/dotfiles.git ~/.dotfiles
```Go to the Dotfiles directory and isntall packages you need to configure:
```bash
cd ~/.dotfiles
stow zsh
```