An open API service indexing awesome lists of open source software.

https://github.com/diyorsattarov7/dotfiles

Minimalist development environment configuration featuring Zsh, tmux, and Neovim with LSP support. Includes custom prompts, vim-style navigation, and integrated development tools for C/C++, Lua, and Rust.
https://github.com/diyorsattarov7/dotfiles

c cpp lua neovim rust tmux zsh

Last synced: 3 months ago
JSON representation

Minimalist development environment configuration featuring Zsh, tmux, and Neovim with LSP support. Includes custom prompts, vim-style navigation, and integrated development tools for C/C++, Lua, and Rust.

Awesome Lists containing this project

README

          

# dotfiles
Configuration files for Zsh, tmux, and Neovim development environment.

## Configuration

### Zsh
- Custom prompt with Git integration
- Color support and essential aliases

### tmux
- 256-color and Vi-mode support
- TPM plugins: sensible, resurrect

### Neovim
- Plugin management via packer.nvim
- LSP support (clangd, lua_ls, rust-analyzer)
- Core plugins: telescope, treesitter, gitsigns, rust-tools

## Install
```bash
git clone https://github.com/diyorsattarov7/dotfiles.git .
ln -s $(pwd)/.zshrc ~/.zshrc
ln -s $(pwd)/.tmux.conf ~/.tmux.conf
ln -s $(pwd)/.config/nvim ~/.config/nvim

# Install plugins
tmux # Then press Ctrl-b I
nvim +PackerSync
```