added config for helix & updated vscode config

This commit is contained in:
Smirnov Alexander 2022-04-02 18:02:26 +03:00
parent dd6cf343ef
commit b66b3cf439
3 changed files with 25 additions and 4 deletions

18
config/helix/config.toml Normal file
View file

@ -0,0 +1,18 @@
theme = "onedark"
[editor]
line-number = "relative"
scrolloff = 8
true-color = true
[editor.cursor-shape]
insert = "bar"
[editor.lsp]
display-messages = true
[keys.normal]
C-s = ":w"
[keys.insert]
j = { k = "normal_mode" }

View file

@ -0,0 +1,4 @@
[[language]]
name = "python"
roots = ["pyproject.toml"]
language-server = { command = "$HOME/.local/share/nvim/lap_servers/python/node_modeules/.bin/pyrigut-langserver", args = ["--stdio"] }