https://github.com/jontze/nvim-config
https://github.com/jontze/nvim-config
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jontze/nvim-config
- Owner: jontze
- Created: 2022-06-24T21:23:45.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T07:15:09.000Z (about 1 year ago)
- Last Synced: 2025-03-06T15:15:48.474Z (3 months ago)
- Language: Lua
- Size: 335 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My NeoVim Config
## Table of Content
- [My NeoVim Config](#my-neovim-config)
- [Table of Content](#table-of-content)
- [Features](#features)
- [Installation](#installation)## Features
- Native LSP Support right out of NeoVim
- Treesitter
- Rust IDE
- [Telescope](https://github.com/nvim-telescope/telescope.nvim) with [FuzzyFinder](https://github.com/junegunn/fzf) and [ripgrep](https://github.com/BurntSushi/ripgrep)
- Status Bar
- File tree## Installation
1. Install neovim version >0.5
2. Clone this repo```bash
mkdir -p ~/.config/nvim
git clone https://github.com/jontze/nvim-config/ ~/.config/nvim
```3. Install a [nerdfont](https://github.com/ryanoasis/nerd-fonts) and configure your terminal to use it (otherwise icons will not display correctly) and select **"VictorMono Nerd Font"** in your terminal emulator's font config
4. Install the `rust-analyzer` binary
5. Open Nvim and all plugins should be loaded and installed, run `:checkhealth` to check
6. Add/customize your keybindings in `~/.config/nvim/lua/keybindings.lua`.
7. Install LSPs for the languages you care about via eg `:LspInstall python`. You can use tab completion after typing `:LspInstall ` to see which language servers are available.## Common Problems
1. In case of issues with `treesitter` run:
```sh
sudo apt install c++
```