-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathsettings.json
More file actions
105 lines (102 loc) · 3.12 KB
/
Copy pathsettings.json
File metadata and controls
105 lines (102 loc) · 3.12 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"vscode_custom_css.imports": ["file:///Users/devin/dotfiles/vscode/theme/styles.css"],
"vscode_custom_css.policy": true,
// Terminal
"terminal.integrated.initialHint": false,
// Theme
"editor.fontFamily": "\"Fira Code\", \"Victor Mono\", Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontVariations": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "string.quoted.double",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "string.quoted.single",
"settings": {
"fontStyle": "italic"
}
}
]
},
"workbench.iconTheme": "catppuccin-perfect-monokai",
"workbench.editor.empty.hint": "hidden",
"zenMode.centerLayout": true,
"zenMode.hideLineNumbers": false,
// Vim Motions
// https://dev.to/ansonh/10-vs-code-vim-tricks-to-boost-your-productivity-1b0n
"vim.smartRelativeLine": true,
"editor.lineNumbers": "relative",
"vim.normalModeKeyBindings": [
{
"before": ["g", "p", "d"],
"commands": ["editor.action.peekDefinition"]
},
{
"before": ["g", "h"],
"commands": ["editor.action.showDefinitionPreviewHover"]
},
{
"before": ["g", "i"],
"commands": ["editor.action.goToImplementation"]
},
{
"before": ["g", "p", "i"],
"commands": ["editor.action.peekImplementation"]
},
{
"before": ["g", "q"],
"commands": ["editor.action.quickFix"]
},
{
"before": ["g", "r"],
"commands": ["editor.action.referenceSearch.trigger"]
},
{
"before": ["g", "t"],
"commands": ["editor.action.goToTypeDefinition"]
},
{
"before": ["g", "p", "t"],
"commands": ["editor.action.peekTypeDefinition"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "t"],
"commands": ["workbench.action.toggleCenteredLayout"]
},
{
"before": ["K"],
"commands": ["lineBreakInsert"],
"silent": true
},
{
"before": ["<leader>", "z"],
"commands": ["workbench.action.toggleZenMode"]
},
],
"vim.leader": "<space>",
"vim.highlightedyank.enable": true,
"vim.highlightedyank.duration": 250,
"vim.useSystemClipboard": true,
"editor.cursorSurroundingLines": 12,
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"cursor.composer.shouldChimeAfterChatFinishes": true,
"workbench.tips.enabled": false,
"workbench.colorTheme": "Gruvbox ish Dark Hard",
"vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim",
"vscode-neovim.neovimInitVimPaths.darwin": "~/.config/nvim/init.lua"
}