Compare commits
3 Commits
e20bac869b
...
2f1e2a43e4
Author | SHA1 | Date | |
---|---|---|---|
2f1e2a43e4 | |||
7590018f31 | |||
2423aa9c2f |
@ -2,3 +2,5 @@ sourceDir: ~/repos/dotfiles
|
||||
merge:
|
||||
command: vim
|
||||
args: "-d"
|
||||
diff:
|
||||
pager: "less -R"
|
||||
|
@ -5,5 +5,7 @@
|
||||
"$HOME/.cargo/**",
|
||||
"$HOME/.rustup/**"
|
||||
],
|
||||
"rust-analyzer.server.path": "rust-analyzer"
|
||||
"rust-analyzer.server.path": "rust-analyzer",
|
||||
"ruff.nativeServer": true,
|
||||
"ruff.nativeBinaryPath": "/usr/bin/ruff"
|
||||
}
|
||||
|
@ -65,7 +65,8 @@ require'nvim-treesitter.configs'.setup {
|
||||
}
|
||||
|
||||
-- Install coc extensions
|
||||
vim.g.coc_global_extensions = {'coc-json', 'coc-lua', 'coc-pyright', 'coc-rust-analyzer', 'coc-yaml', 'coc-eslint'}
|
||||
vim.g.coc_global_extensions = {'coc-json', 'coc-lua', 'coc-rust-analyzer',
|
||||
'coc-yaml', 'coc-eslint', '@yaegassy/coc-ruff'}
|
||||
|
||||
-- Turn on nice things
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
|
@ -71,3 +71,7 @@ bindkey '^[[A' history-substring-search-up
|
||||
bindkey '^[[B' history-substring-search-down
|
||||
bindkey -M vicmd 'k' history-substring-search-up
|
||||
bindkey -M vicmd 'j' history-substring-search-down
|
||||
|
||||
if command -v pazi &>/dev/null; then
|
||||
eval "$(pazi init zsh)" # or 'bash'
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user