Changed zshrc slightly, fixed Kitty font, added rls to Rust setup, fixed
vimrc for rls
This commit is contained in:
parent
5317e046f5
commit
0f30ca6199
4 changed files with 7 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
# bold/italic/bold-italic variants. By default they are derived automatically,
|
# bold/italic/bold-italic variants. By default they are derived automatically,
|
||||||
# by the OSes font system. Setting them manually is useful for font families
|
# by the OSes font system. Setting them manually is useful for font families
|
||||||
# that have many weight variants like Book, Medium, Thick, etc. For example:
|
# that have many weight variants like Book, Medium, Thick, etc. For example:
|
||||||
font_family Iosevka Custom Regular
|
font_family Iosevka Custom Medium
|
||||||
# bold_font Operator Mono Medium
|
# bold_font Operator Mono Medium
|
||||||
# italic_font Operator Mono Book Italic
|
# italic_font Operator Mono Book Italic
|
||||||
# bold_italic_font Operator Mono Medium Italic
|
# bold_italic_font Operator Mono Medium Italic
|
||||||
|
|
|
@ -24,3 +24,7 @@
|
||||||
args:
|
args:
|
||||||
creates: ~/.cargo/bin/cargo-install-update
|
creates: ~/.cargo/bin/cargo-install-update
|
||||||
|
|
||||||
|
- name: Install rls
|
||||||
|
shell: ~/.cargo/bin/rustup component add rls-preview rust-analysis rust-src
|
||||||
|
args:
|
||||||
|
creates: ~/.cargo/bin/rls
|
||||||
|
|
|
@ -66,7 +66,7 @@ endif
|
||||||
if executable('rls')
|
if executable('rls')
|
||||||
au User lsp_setup call lsp#register_server({
|
au User lsp_setup call lsp#register_server({
|
||||||
\ 'name': 'rls',
|
\ 'name': 'rls',
|
||||||
\ 'cmd': {server_info->['rustup', 'run', 'nightly', 'rls']},
|
\ 'cmd': {server_info->['rustup', 'run', 'stable', 'rls']},
|
||||||
\ 'whitelist': ['rust'],
|
\ 'whitelist': ['rust'],
|
||||||
\ })
|
\ })
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -53,7 +53,7 @@ antigen apply
|
||||||
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
|
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
|
||||||
alias exa="exa -l --git"
|
alias exa="exa -l --git"
|
||||||
|
|
||||||
eval $(thefuck --alias oops)
|
eval $($HOME/.anyenv/envs/pyenv/shims/thefuck --alias oops)
|
||||||
# pip 10.0.1 zsh completion start
|
# pip 10.0.1 zsh completion start
|
||||||
function _pip_completion {
|
function _pip_completion {
|
||||||
local words cword
|
local words cword
|
||||||
|
|
Loading…
Add table
Reference in a new issue