Open hhstore opened 2 years ago
目标语言:
新特性:
配置好的效果图:
theme 主体配色插件:
必装插件:
代码补全:
lsp 插件:
Python + django:
配色:
插件:
lsp 插件:
➤ which rust-analyzer
/opt/homebrew/bin/rust-analyzer
➤ rust-analyzer --version
rust-analyzer 0.0.0 (67920f797 2022-09-04)
// Settings in here override those in "LSP-rust-analyzer/LSP-rust-analyzer.sublime-settings"
{
"selector": "source.rust",
"command": ["/opt/homebrew/bin/rust-analyzer"],
}
CMD + Shift + P
, 输入: lsp enable
, 选择在项目内激活 LSP-rust-analyzer
. 先不要全局激活, 可能会出现始终找不到 LSP-rust-analyzer
选项.LSP 配置段:
// Settings in here override those in "LSP/LSP.sublime-settings"
{
"clients": {
"zig": {
"command": ["/Users/dev/zls/zls"],
"enabled": true,
"selector": "source.zig"
}
}
}
自定义快捷键: (兼容 Jetbrains Idea)
CMD + [
: 代码跳转定义CMD + ]
: 跳转返回
[
{ "keys": ["super+["], "command": "goto_definition" },
{ "keys": ["super+]"], "command": "jump_back" },
]
常用快捷键表:
1
1
related: