1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/nvim
2025-10-16 18:50:03 +02:00
..
after Adding nvim/after/ftplugin/alpha.lua 2025-03-23 16:36:43 +01:00
lua/user update keymaps for toggling whitespace/indent guidelines to use util functions 2025-10-16 18:50:03 +02:00
queries adding nvim/queries/php/injections.scm 2025-03-23 16:26:30 +01:00
snippets nvim: snippets: adding rfc5322 date 2024-10-17 11:56:00 +02: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 nvim: update lazy packages 2025-09-23 19:29:00 +02: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