Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philosofonusus/nvim
The best baseline neovim config ready to be used in day-to-day work
https://github.com/philosofonusus/nvim
neovim neovim-conf neovim-config neovim-configuration neovim-dotfiles nvim nvim-config nvim-configuration
Last synced: 26 days ago
JSON representation
The best baseline neovim config ready to be used in day-to-day work
- Host: GitHub
- URL: https://github.com/philosofonusus/nvim
- Owner: philosofonusus
- Created: 2024-09-11T10:36:25.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-14T12:14:32.000Z (26 days ago)
- Last Synced: 2024-12-14T12:17:08.039Z (26 days ago)
- Topics: neovim, neovim-conf, neovim-config, neovim-configuration, neovim-dotfiles, nvim, nvim-config, nvim-configuration
- Language: Lua
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My neovim config <3
```
Startuptime: 78.08msBased on the actual CPU time of the Neovim process till UIEnter.
This is more accurate than `nvim --startuptime`.
LazyStart 14.53ms
LazyDone 66.94ms (+52.4ms)
UIEnter 78.08ms (+11.15ms)
```## Introduction
This repository contains my personal neovim configuration that I use in day-to-day work.
Since I'm actively using it, it is in my very own interest to maintain and fix any issues that may arise.I have went over numerous neovim configs and combined all the best autocommands, keymaps and options that work for me.
Even though it is opionated, it has very good balance between ready to be used now, and providing good defaults and starting point for your own configuration.It contains all the useful plugins and configurations for web-dev and general programming.
## Installation
### Install External Dependencies
External Requirements:
- Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`)
- [ripgrep](https://github.com/BurntSushi/ripgrep#installation)
- Clipboard tool (xclip/xsel/win32yank or other depending on platform)
- `Node` <= `22.11.0` & `npm`
- `Deno` to use deno capabilities
- A [Nerd Font](https://www.nerdfonts.com/): optional, provides various icons
- if you have it set `vim.g.have_nerd_font` in `init.lua` to true
- Language Setup:
- `npm i -g typescript typescript-language-server`### Install Mason dependencies
After installing all external dependecies run following command:
- `:MasonInstallAll`
## Thanks to
When I initially started using neovim, my starting point was [NvChad](https://nvchad.com/). That's why you may find keybindings similar to NvChad's
_This is a fork of [nvim-lua/kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim) that moves from a single file to a multi file configuration (huge thanks to them)._