1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/nvim
2026-02-16 16:53:24 +01:00
..
after Adding nvim/after/ftplugin/alpha.lua 2025-03-23 16:36:43 +01:00
lua/user nvim: move keymaps to keymaps.lua 2026-02-16 16:53:24 +01:00
queries remove nvim/queries/blade 2025-11-20 05:35:19 +01:00
snippets nvim: add vue snippets 2026-01-09 21:43:14 +01:00
spell update nvim/spell 2025-03-23 16:26:30 +01:00
.luarc.json nvim: update .luarc.json 2025-10-08 08:28:20 +02:00
init.lua new nvim config 2024-08-25 16:49:58 +02:00
lazy-lock.json update nvim 2026-02-16 13:00:29 +01:00
README.md nvim/README.md: require Neovim 0.11+ 2025-09-23 19:27:41 +02:00

Neovim config

Install Instructions

Install requires Neovim 0.11+. Always review the code before installing a configuration.

Clone the repository and install the plugins:

git clone git@github.com:pnx/dotfiles ~/.config/pnx/dotfiles

Open Neovim with this config:

NVIM_APPNAME=pnx/dotfiles/nvim nvim

File structure

├── after
│  ├── ftplugin # filetype specific settings.
│  └── indent #indent settings.
├── init.lua
└── lua
   └── user
      ├── extras.lua
      ├── icons.lua # icons used for plugins/settings
      ├── keymaps.lua
      ├── lazy.lua # plugin manager
      ├── options.lua
      └─── plugins #plugins
         ├── core # core plugins
         ├── editor # editor specific plugins/settings
         ├── lang #language specific plugins/settings
         └── ide # IDE plugins

Plugin directory is organized by category. at minimum there should be a .lua file, but if that file becomes to large, the code can be splitted into multiple files in a subdirectory with the same name and included in the main .lua file

Plugins

bars-and-lines

color

colorscheme

completion

editing-support

file-explorer

formatting

fuzzy-finder

git

icon

indent

keybinding

lsp

markdown-and-latex

nvim-dev

plugin-manager

snippet

split-and-window

statusline

syntax

test

utility

Language Servers

  • cmake
  • html
  • php
  • typescript
  • c/c++
  • golang