winget方式安装
//neovim
winget search neovim
winget install clangd
:CocInstall coc-clangd
//:CocInstall clangd-install
:CocInstall coc-snippets
//outline python
:CocInstall coc-python
:CocInstall coc-jedi
pip3 install jedi
pip3 install pylint
//配置路径
C:\Users\dnsnat\AppData\Local\nvim
//插件路径
C:\Users\dnsnat.vim\plugged
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| { "languageserver": { "svlangserver": { "module": "/usr/lib/node_modules/@imc-trading/svlangserver/bin/main.js", "args": ["--node-ipc"], "filetypes": ["systemverilog","verilog"], "settings": { "systemverilog.includeIndexing": ["**/*.{sv,svh,v}"], "systemverilog.excludeIndexing": ["test/**/*.sv*"], "systemverilog.defines" : [], } }, "svls": { "command": "svls", "filetypes": ["systemverilog","verilog"] }
} }
|
curl ~/AppData/Local/nvim-data/site/autoload/plug.vim –create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
//python不要安装最新的
winget search python
winget install Python.Python.3.10
pip3 install –user pynvim
//pip3 install –user neonvim
pip3 install –user scons-compiledb
//node安装
winget search node
npm install -g @imc-trading/svlangserver
//ctags
winget install UniversalCtags.Ctags
winget下载路径
C:\Users\demon\AppData\Local\Temp\WinGet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| REM 查看全部可下载软件(大约 3045 个) winget show
REM 查看已经安装的全部软件 winget list
REM 查看软件最新版本等信息(winget show vscode) winget show vscode
REM 下载软件(vscode) REM 卸载软件同理 REM winget install vscode winget install vscode -l D:\Software\Visual_Studio_Code
REM 启用交互式软件安装 winget install vscode -i
REM 升级软件(可指定版本) winget upgrade powertoys REM winget upgrade powertoys --version 0.15.2
REM 升级全部软件 winget upgrade --all
REM 升级某个软件(vscode) winget upgrade vscode
|
一般下载步骤(vscode)
1 2 3 4 5 6 7 8 9
| REM 主要细节 REM 一般先查看对应版本 winget show vscode
REM 再选择下载的指定路径 winget install "Microsoft Visual Studio Code" -l D:\Software\Visual_Studio_Code
REM 完事了再看看软件是否正常安装(可省略) winget list
|
code.exe -g [file name]:[line number]
alacritty.exe -e nvim [file name] +[line number]
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding_FangHaha14的博客-CSDN博客
在 windows 平台上为 neovim 添加 python 支持_neovim python_GrowlR的博客-CSDN博客