Skip to content

21st-century Neovim configure. Mainly implemented by lua.

Notifications You must be signed in to change notification settings

jinzaizhichi/.sea.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dashboard

Neovim Configure

Install

  1. Install Neovim >=0.7

  2. Install pynvim

  pip install pynvim
  1. Install node.js, npm, and yarn
curl -sL install-node.vercel.app/lts | bash
npm install --global yarn
  1. Install lolcat for display the NEOVIM logo
Ubuntu:
    sudo apt install lolcat
OSX:
    brew install lolcat
  1. Install ag or rg
OSX:
    brew install rg
Ubuntu:
    sudo apt-get install ripgrep
  1. Install Nerd Font
Install Nerd Font Family: `DejaVuSansMono Nerd Font` or  what you want
Download from https://www.nerdfonts.com/
Install method depend on your os.
  1. Install xclip (X11), wl-clipboard (Wayland), pngpaste (MacOS), for Clipboard Image

  2. Make some link

./install.sh
  1. You should also change the python3 path to your own in init.lua.
vim.g.python3_host_prog = 'you/python3/path'
  1. Open neovim and run :PackerSync<cr> command to install Plugins by Packer plugin manager.

More

For getting the best performance, please use the GPU-based terminal:

Main features

Fuzzy Search

Fuzzy Search

Complete by Coc

Complete by Coc

Agenda

Agenda

Markdown & Vimwiki

Markdown & Vimwiki

Project TODO

Project TODO

Code View & File View

Code View

Debug Adapter Protocol

Debug Adapter Protocol

Pomodoro Clock

Pomodoro Clock

Window Number

Window Number

WhichKey

WhichKey

TODO: detail


.
├── coc-settings.json         -- coc lsp 设置,也可选内置LSP
├── ftplugin                  -- 和原来的vim script一样,根据文件类型加载模块                  
│   ├── python.vim            --                         
│   └── vimwiki.vim           --                          
├── init.lua                  -- neovim配置文件入口                  
├── lua                       -- lua 相关                 
│   ├── configure             -- 每个插件一个配置文件                       
│   │   ├── coc.lua           --                          
│   │   ├── ....              --                       
│   ├── core                  -- 核心模块                 
│   │   ├── after.lua         -- 后处理模块                    
│   │   ├── default.lua       -- 默认设置模块                             
│   │   ├── init.lua          -- 核心加载逻辑模块                         
│   │   ├── mapping.lua       -- 快捷键注册模块                             
│   │   └── plugins.lua       -- 插件加载模块                             
│   ├── user                  -- 用户自定义模块                 
│   │   ├── init.lua          --                           
│   │   └── pomodoro.lua      --                              
│   └── util                  -- 其他工具                  
│       ├── global.lua        -- 全局函数                            
│       ├── json.lua          -- json读写相关                          
│       └── path.lua          -- 路径读写相关                          
└── tasks.ini                 -- 任务定义                   
                              

About

21st-century Neovim configure. Mainly implemented by lua.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 94.2%
  • CSS 3.9%
  • Vim Script 1.4%
  • Shell 0.5%