Compare commits

...

3 Commits

Author SHA1 Message Date
e20bac869b use ruff as lsp 2024-09-11 09:30:46 -04:00
d42f6224f2 fix chezmoi diff pager 2024-09-11 09:29:29 -04:00
97ca59fc0c add convenience forward/reverse dep listers 2024-09-03 14:30:11 -04:00
6 changed files with 20 additions and 8 deletions

View File

@ -2,3 +2,5 @@ sourceDir: ~/repos/dotfiles
merge:
command: vim
args: "-d"
diff:
pager: "less"

View File

@ -7,6 +7,9 @@
export EDITOR=nvim
export SUDO_EDITOR=nvim
# pager
export LESS=-R
# wayland
export MOZ_ENABLE_WAYLAND=1
export QT_QPA_PLATFORM=wayland

View File

@ -1,9 +1,11 @@
{
"coc.preferences.extensionUpdateCheck": "daily",
"workspace.ignoredFolders": [
"$HOME",
"$HOME/.cargo/**",
"$HOME/.rustup/**"
],
"rust-analyzer.server.path": "rust-analyzer"
"coc.preferences.extensionUpdateCheck": "daily",
"workspace.ignoredFolders": [
"$HOME",
"$HOME/.cargo/**",
"$HOME/.rustup/**"
],
"rust-analyzer.server.path": "rust-analyzer",
"ruff.nativeServer": true,
"ruff.nativeBinaryPath": "/usr/bin/ruff"
}

View File

@ -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"

View File

@ -0,0 +1,2 @@
#!/bin/sh
xbps-query -Rx "$1"

View File

@ -0,0 +1,2 @@
#!/bin/sh
xbps-query -RX "$1"