1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim
2024-10-17 11:56:00 +02:00
..
after nvim/after/ftplugin/go.lua: set hardtabs 2024-10-01 14:20:06 +02:00
lua/user nvim: lazy load some plugins. 2024-10-15 08:46:54 +02:00
queries nvim: minor fix 2024-10-01 14:18:56 +02:00
snippets nvim: snippets: adding rfc5322 date 2024-10-17 11:56:00 +02:00
.luarc.json nvim/.luarc.json: add more globals 2024-08-26 18:46:14 +02:00
_types.lua nvim: minor typo fix 2024-08-26 18:53:04 +02:00
init.lua new nvim config 2024-08-25 16:49:58 +02:00
lazy-lock.json nvim: update pkgs 2024-10-15 08:45:38 +02:00
README.md nvim/README.md: update 2024-09-17 18:51:11 +02:00

Neovim config

Install Instructions

Install requires Neovim 0.10+. 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