{"id":48041300,"url":"https://github.com/m99coder/nvim-config","last_synced_at":"2026-04-04T14:08:23.007Z","repository":{"id":72512379,"uuid":"556181006","full_name":"m99coder/nvim-config","owner":"m99coder","description":"How to configure Neovim with bare minimum IDE capabilities","archived":false,"fork":false,"pushed_at":"2024-01-17T20:34:40.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-10T02:54:52.290Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m99coder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-10-23T08:46:46.000Z","updated_at":"2022-10-23T08:53:25.000Z","dependencies_parsed_at":"2023-03-22T20:15:15.759Z","dependency_job_id":null,"html_url":"https://github.com/m99coder/nvim-config","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/m99coder/nvim-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m99coder%2Fnvim-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m99coder%2Fnvim-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m99coder%2Fnvim-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m99coder%2Fnvim-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m99coder","download_url":"https://codeload.github.com/m99coder/nvim-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m99coder%2Fnvim-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31402278,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T14:08:22.368Z","updated_at":"2026-04-04T14:08:22.985Z","avatar_url":"https://github.com/m99coder.png","language":"Lua","readme":"# nvim-config\n\n## Install dependencies\n\nFor `Telescope` to provide a feature-rich fuzzy-finding experience, installing some utilities beforehand is best.\n\n```shell\nbrew install ripgred fd\n```\n\nFor the Lua language support, these two additional tools are required.\n\n```shell\nbrew install luarocks cmake\n```\n\n## Options\n\nThe options are in the first section of the `init.lua` config file. Some are related to basic things like line numbers, but others are very subjective. Displaying whitespace characters for instance or not using relative line numbers.\n\n```lua\nlocal options = {\n  breakindent = true,\n  clipboard = \"unnamedplus\",\n  completeopt = \"menuone,noselect\",\n  confirm = true,\n  cursorline = true,\n  equalalways = false,\n  expandtab = true,\n  fileencoding = \"utf-8\",\n  hlsearch = false,\n  ignorecase = true,\n  list = true,\n  listchars = \"tab:\\\\u279c\\\\u00b7,trail:·,nbsp:+,leadmultispace:·,space:·\",\n  number = true,\n  scrolloff = 10,\n  shiftwidth = 2,\n  showtabline = 2,\n  signcolumn = \"yes\",\n  smartcase = true,\n  smartindent = true,\n  splitbelow = true,\n  splitright = true,\n  tabstop = 2,\n  termguicolors = true,\n  updatetime = 250,\n  writebackup = false,\n}\n\nfor k, v in pairs(options) do\n  vim.o[k] = v\nend\n```\n\n## Plugins\n\nThe configuration installs the following plugins:\n\n|Plugin|Purpose|\n|---|---|\n|`wbthomason/packer.nvim`|Plugin package manager|\n|`nvim-lua/plenary.nvim`|Library for async programming using coroutines|\n|`tpope/vim-fugitive`|Git commands|\n|`folke/which-key.nvim`|Helper window for keymaps|\n|`folke/trouble.nvim`|Helper window for diagnostics|\n|`folke/todo-comments.nvim`|Highlight special comments|\n|`lewis6991/gitsigns.nvim`|Show git status in sign column|\n|`windwp/nvim-autopairs`|Automatically pair characters|\n|`gruvbox-community/gruvbox`|Colorscheme|\n|`nvim-treesitter/nvim-treesitter`|Treesitter integration for better syntax highlighting|\n|`nvim-telescope/telescope.nvim`|Fuzzy-finding for all kinds of lists|\n|`nvim-telescope/telescope-fzf-native.nvim`|Fuzzy-finding using `fzf-native`|\n|`akinsho/toggleterm.nvim`|Terminal multiplexer|\n|`lukas-reineke/indent-blankline.nvim`|Show line for current context|\n|`akinsho/bufferline.nvim`|Show buffer line on top|\n|`nvim-lualine/lualine.nvim`|Show lua line on bottom|\n|`williamboman/mason.nvim`|LSP package manager|\n|`WhoIsSethDaniel/mason-tool-installer.nvim`|Automatic tool installer|\n|`neovim/nvim-lspconfig`|LSP configuration|\n|`jose-elias-alvarez/null-ls.nvim`|Linters and formatters|\n|`hrsh7th/nvim-cmp`|Auto-completion|\n|`hrsh7th/cmp-nvim-lsp`|Auto-completion integration for `lspconfig`|\n|`saadparwaiz1/cmp_luasnip`|Snippet engine in Lua|\n|`L3MON4D3/LuaSnip`|Snippet library|\n\n## Setups\n\nMost of the plugins are used as they come. For some a special configuration is added.\n\n* Show branch icon in `branch` section of lualine\n* Use diagnostic symbols in `diagnostics` section of lualine\n\n## Configs\n\nThe included configurations are kept minimal for now. Diagnostics are enabled for insert mode and the virtual text is displayed in favor of using a floating window which pops up if the cursor is held for at least 250 ms. Autoformat is set up as soon as a buffer is written to disk (file is saved). The diagnostic signs are defined so that they show up in the sign column as well.\n\n## Keymaps\n\nThe final part contains some basic keymappings. The leader key is set to `\u003cSpace\u003e` and some keyboard shortcuts for `Telescope` are set up.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm99coder%2Fnvim-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm99coder%2Fnvim-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm99coder%2Fnvim-config/lists"}