https://github.com/muthhukumar/dotfiles
TODO
https://github.com/muthhukumar/dotfiles
Last synced: about 2 months ago
JSON representation
TODO
- Host: GitHub
- URL: https://github.com/muthhukumar/dotfiles
- Owner: muthhukumar
- Created: 2023-05-04T02:49:54.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-13T11:28:55.000Z (7 months ago)
- Last Synced: 2025-01-29T03:48:38.156Z (4 months ago)
- Language: Lua
- Size: 63.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## Tools
1. tmux
2. neovim
3. wezterm
4. lazygit
5. brew
6. ohmyzsh## Others
[Fonts](https://github.com/muthhukumar/fonts)
## Setup powerlevel10k plugin
```jsx
brew install powerlevel10k
echo "source $(brew --prefix)/share/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc
source ~/.zshrc
nvim ~/.p10k.zsh - to edit the file
```## Setup zsh-autosuggestions plugin
This plugin provides some really nice auto completion functionality as you type out commands.
Install it like so:
```bash
brew install zsh-autosuggestions
echo "source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc
source ~/.zshrc
```