mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: various changes, sched-ext
This commit is contained in:
parent
db0f9bef6d
commit
cc85d2e5ba
7 changed files with 143 additions and 173 deletions
|
|
@ -55,7 +55,7 @@ in {
|
|||
displayBindingsStr = lib.concatLines displayBindings;
|
||||
in ''
|
||||
${displayBindingsStr}
|
||||
for_window [class="^steam_app_default$"] floating enable
|
||||
for_window [class="^steam_app_default$"] floating enable, fullscreen disable
|
||||
'';
|
||||
|
||||
config = {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,4 @@ in {
|
|||
vesktop
|
||||
#betterdiscordctl
|
||||
];
|
||||
xdg.configFile."discord/settings.json".text = toJSON {} {
|
||||
"SKIP_HOST_UPDATE" = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,6 +60,8 @@ in {
|
|||
# tree
|
||||
nui-nvim
|
||||
neo-tree-nvim
|
||||
# Session management
|
||||
resession-nvim
|
||||
# tree sitter
|
||||
(pkgs.vimPlugins.nvim-treesitter.withPlugins (_:
|
||||
with pkgs.tree-sitter-grammars; [
|
||||
|
|
|
|||
|
|
@ -261,6 +261,23 @@ require('neorg').setup {
|
|||
},
|
||||
}
|
||||
|
||||
-- session managemenet
|
||||
|
||||
require("resession").setup({
|
||||
autosave = {
|
||||
enabled = true,
|
||||
interval = 60,
|
||||
notify = true,
|
||||
},
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("VimLeavePre", {
|
||||
callback = function()
|
||||
-- Always save a special session named "last"
|
||||
resession.save("last")
|
||||
end,
|
||||
})
|
||||
|
||||
-- telescope
|
||||
local telescope = require('telescope.builtin')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue