{"id":18276860,"url":"https://github.com/liurongqing/nvim","last_synced_at":"2026-03-06T04:35:31.925Z","repository":{"id":158477467,"uuid":"634092773","full_name":"liurongqing/nvim","owner":"liurongqing","description":"一份基于 macbook 的 nvim 完整的快速配置","archived":false,"fork":false,"pushed_at":"2024-05-22T12:58:20.000Z","size":23,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-22T14:05:08.289Z","etag":null,"topics":["nvim","tmux","vim"],"latest_commit_sha":null,"homepage":"","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/liurongqing.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-29T03:04:20.000Z","updated_at":"2024-05-22T12:58:23.000Z","dependencies_parsed_at":"2024-11-05T12:17:28.816Z","dependency_job_id":"41b3b7fe-69d8-45eb-8ffa-95b848b051ca","html_url":"https://github.com/liurongqing/nvim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/liurongqing/nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liurongqing%2Fnvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liurongqing%2Fnvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liurongqing%2Fnvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liurongqing%2Fnvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liurongqing","download_url":"https://codeload.github.com/liurongqing/nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liurongqing%2Fnvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30161868,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T04:22:03.816Z","status":"ssl_error","status_checked_at":"2026-03-06T04:22:00.183Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","tmux","vim"],"created_at":"2024-11-05T12:17:26.270Z","updated_at":"2026-03-06T04:35:31.887Z","avatar_url":"https://github.com/liurongqing.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 成神之路\n\n![Neovim](https://img.shields.io/badge/Neovim-v0.9.0-brightgreen)\n![License](https://img.shields.io/badge/License-MIT-brightgreen)\n![Packer.nvim](https://img.shields.io/badge/Packer.nvim-Plugin%20Manager-brightgreen)\n![Coc.nvim](https://img.shields.io/badge/Coc.nvim-Extension-brightgreen)\n[![vim-startify](https://img.shields.io/badge/vim--startify-Plugin-orange)](https://github.com/mhinz/vim-startify)\n[![nvim-tree](https://img.shields.io/badge/nvim--tree-Plugin-orange)](https://github.com/nvim-tree/nvim-tree.lua)\n[![catppuccin](https://img.shields.io/badge/catppuccin-Plugin-orange)](https://github.com/catppuccin/nvim)\n[![telescope](https://img.shields.io/badge/telescope-Plugin-orange)](https://github.com/nvim-telescope/telescope.nvim)\n---\n\n这是一份基于 macbook 的 nvim 完整的配置\n\n1. 环境变量\n\n    `vim ~/.zshrc`\n\n    ```shell\n    # alias vim=\"nvim\" # 留条路，万一 nvim 崩了，还能用 vim 临时编辑\n    alias vi=\"nvim\"\n    alias v=\"nvim\"\n    alias n=\"nvim\"\n    ```\n\n1. 安装 tmux\n\n    参考地址：https://github.com/tmux/tmux\n\n    ```shell\n    brew install tmux\n    ```\n\n    配置：https://github.com/gpakosz/.tmux\n\n    快速入手： [doc/tmux.md](./doc/tmux.md)\n\n1. 安装 neovim\n\n    参考地址：https://github.com/neovim/neovim/wiki/Installing-Neovim\n\n    ```shell\n    brew install neovim\n    ```\n\n1. 安装 字体\n\n    参考地址：https://github.com/ryanoasis/nerd-fonts/#option-4-homebrew-fonts\n\n    ```shell\n    # brew tap homebrew/cask-fonts 已经移入核心，不需要加这句了\n    brew install font-hack-nerd-font\n\n    # 安装好以后在 iterm2 中设置 `Profiles` -\u003e `Text` -\u003e `Non-ASCII Font`\n    ```\n\n1. packer.nvim 安装\n\n    参考地址：https://github.com/wbthomason/packer.nvim\n\n    ```shell\n    git clone --depth 1 https://github.com/wbthomason/packer.nvim\\ \n    ~/.local/share/nvim/site/pack/packer/start/packer.nvim\n    ```\n\n1. 克隆整个配置文件\n\n    ```shell\n    cd ~/.config\n    git clone https://github.com/liurongqing/nvim.git\n    ```\n\n1. packer.nvim 管理的插件安装\n\n    ```shell\n    # 输入 nvim 命令，然后输入以下命令安装同步\n    :PackerSync\n    ```\n\n1. Coc.nvim 相关插件安装\n   需要先安装 node， 可以安装 nvm 管理 node 版本\n    ```shell\n    # 输入 nvim 命令，然后安装以下插件\n    :CocInstall coc-json coc-tsserver coc-eslint coc-prettier coc-emmet coc-snippets\n    ```\n\n1. 安装插件以支持 telescope 搜索\n   1. ripgrep    \n      https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#installation\n      ```shell\n      brew install ripgrep\n      ```\n   1. sharkdp/fd    \n      https://github.com/sharkdp/fd?tab=readme-ov-file#installation\n      ```shell\n      brew install fd\n      ```\n   1. nvim-treesitter    \n      https://github.com/nvim-treesitter/nvim-treesitter/wiki/Installation    \n      在 `lua/plugins.ua` 中添加\n      ```shell\n      use {\n        'nvim-treesitter/nvim-treesitter',\n        run = ':TSUpdate'\n      }\n      ```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliurongqing%2Fnvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliurongqing%2Fnvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliurongqing%2Fnvim/lists"}