Compare commits

...

2 Commits

Author SHA1 Message Date
8ee886dfa0
refactor(nvim): explicitly specify *all* options for exrc.nvim
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
2024-09-01 21:07:21 -05:00
20a016e90a
refactor(hypr): remove unused script 2024-09-01 21:06:24 -05:00
2 changed files with 14 additions and 13 deletions

View File

@ -1,11 +0,0 @@
#!/usr/bin/env bash
main() {
local mon_count
mon_count="$(hyprctl monitors -j | jq length)"
if ((mon_count > 1)); then
hyprctl dpms off eDP-1
fi
}
main

View File

@ -2,8 +2,20 @@ return {
{
"jedrzejboczar/exrc.nvim",
opts = {
-- Already handled by Neovim just fine imo
on_vim_enter = false,
on_vim_enter = true,
on_dir_changed = {
enabled = true,
use_ui_select = false,
},
trust_on_write = true,
use_telescope = true,
min_log_level = vim.log.levels.DEBUG,
lsp = {
auto_setup = false,
},
commands = {
instant_edit_single = true,
},
},
},
}