{"id":27371311,"url":"https://github.com/aragami3070/nvim","last_synced_at":"2026-03-05T15:32:57.666Z","repository":{"id":243938011,"uuid":"813806157","full_name":"aragami3070/nvim","owner":"aragami3070","description":"My nvim config :)","archived":false,"fork":false,"pushed_at":"2025-11-18T18:56:07.000Z","size":2660,"stargazers_count":6,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-18T20:23:47.722Z","etag":null,"topics":["nvim","nvim-config"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aragami3070.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-11T19:25:08.000Z","updated_at":"2025-11-18T18:56:11.000Z","dependencies_parsed_at":"2024-12-23T17:19:17.599Z","dependency_job_id":"6d6936f3-8ee6-4d4a-a226-26f3949d73a6","html_url":"https://github.com/aragami3070/nvim","commit_stats":null,"previous_names":["aragami3070/nvim"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/aragami3070/nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragami3070%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragami3070%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragami3070%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragami3070%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aragami3070","download_url":"https://codeload.github.com/aragami3070/nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aragami3070%2Fnvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30133261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T14:41:47.141Z","status":"ssl_error","status_checked_at":"2026-03-05T14:41:21.567Z","response_time":93,"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":["nvim","nvim-config"],"created_at":"2025-04-13T09:39:54.468Z","updated_at":"2026-03-05T15:32:57.646Z","avatar_url":"https://github.com/aragami3070.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My neovim config README シ \n\n(WORK IN PROGRESS 👀)\n\n# Table of Contents\n\n- [Requirements](#Requirements)\n- [My dirs settings](#My-dirs-settings)\n- [Base plugins](#Base-plugins)\n\n# Requirements\n\n- [Nerd Fonts](https://www.nerdfonts.com/font-downloads) - to show icons\n- Neovim 0.10+\n- Git 2.43+\n- [Node and npm](https://timeweb.cloud/tutorials/nodejs/kak-ustanovit-node-js-v-ubuntu-22-04) - to use markdown-preview and install language servers and debug adapters with [mason.nvim.](https://github.com/williamboman/mason.nvim)\n- [xclip](https://linuxconfig.org/how-to-use-xclip-on-linux) - to copy from neovim to main buffer\n- [ripgerp](https://github.com/BurntSushi/ripgrep) - to search with [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)\n- [cargo](https://github.com/rust-lang/cargo) - to replace something with [nvim-spectre](https://github.com/nvim-pack/nvim-spectre)\n- [obsidian](https://help.obsidian.md/Getting+started/Download+and+install+Obsidian) - you need obsidian for note and change workspace dir in [obsidian-nvim.lua](https://github.com/aragami3070/nvim/blob/master/lua/plugins/obsidian-nvim.lua) (or remove obsidian.nvim plugin)\n\n# My dirs settings\n\ninit.lua - to use all config from other plugins. \n\nIn core/ I have:\n- [plugins.lua](https://github.com/aragami3070/nvim/blob/master/lua/core/plugins.lua) for write installation all plugins that I use\n- [keymaps.lua](https://github.com/aragami3070/nvim/blob/master/lua/core/keymaps.lua) for setup my keymaps\n- [set.lua](https://github.com/aragami3070/nvim/blob/master/lua/core/set.lua) for setup neovim options\n- [colors.lua](https://github.com/aragami3070/nvim/blob/master/lua/core/colors.lua) for setup my color theme\n\nIn plugins/ I have configs for installed plugins\n\nIn macros/ I have macros for some languages\n\n# Base plugins\n\nBase plugin (I think so)\n\n- Package manager - [lazy.nvim](https://github.com/folke/lazy.nvim)\n- neo-tree - [neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim)\n- treesitter - [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)\n- lsp - [lspconfig](https://github.com/neovim/nvim-lspconfig)\n- cmp - [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)\n- mason - [mason.nvim](https://github.com/williamboman/mason.nvim)\n- navic - [nvim-navic](https://github.com/SmiteshP/nvim-navic)\n- telescope - [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)\n- nvim-spectre - [nvim-spectre](https://github.com/nvim-pack/nvim-spectre)\n- nvim-autopairs - [nvim-autopairs](https://github.com/windwp/nvim-autopairs)\n- which-key.nvim - [which-key.nvim](https://github.com/folke/which-key.nvim)\n- bufferline.nvim - [bufferline.nvim](https://github.com/akinsho/bufferline.nvim)\n\n\n# Other plugins\n\n- Markdown-preview - [markdown-preview.nvim](https://github.com/iamcco/markdown-preview.nvim)\n\tNeed to run markdown-preview:\n\t```\n\t\t:Lazy build markdown-preview.nvim\n\t```\n- obsidian - [obsidian-nvim](https://github.com/epwalsh/obsidian-nvim)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragami3070%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faragami3070%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faragami3070%2Fnvim/lists"}