add nextcloud adapt neovim

This commit is contained in:
afoucaultc 2026-07-08 11:46:17 +02:00
parent 1187ea0d4e
commit f9413c476c
8 changed files with 15 additions and 11 deletions

View file

@ -16,6 +16,8 @@ hl.bind("ALT + N", hl.dsp.exec_cmd("kitty -e nvim"))
hl.bind("ALT + W", hl.dsp.exec_cmd(app_launcher)) hl.bind("ALT + W", hl.dsp.exec_cmd(app_launcher))
hl.bind("ALT + F", hl.dsp.exec_cmd(browser)) hl.bind("ALT + F", hl.dsp.exec_cmd(browser))
hl.bind("ALT + Z", hl.dsp.exec_cmd("zotero")) hl.bind("ALT + Z", hl.dsp.exec_cmd("zotero"))
hl.bind("ALT + T", hl.dsp.exec_cmd("thunderbird"))
-- window management -- window management
hl.bind("ALT + V", hl.dsp.window.float({ action = "toggle" })) hl.bind("ALT + V", hl.dsp.window.float({ action = "toggle" }))
hl.bind("ALT + F4", hl.dsp.window.close()) hl.bind("ALT + F4", hl.dsp.window.close())

View file

@ -1,11 +1,3 @@
hl.config({
misc = {
force_default_wallpaper = 0,
disable_hyprland_logo = true,
disable_splash_rendering = true,
vrr = 1,
},
})
hl.config({ hl.config({
cursor = { cursor = {
enable_hyprcursor = false, enable_hyprcursor = false,

View file

@ -32,8 +32,8 @@ hl.config({
blur = { blur = {
enabled = true, enabled = true,
size = 3, size = 1,
passes = 1, passes = 2,
vibrancy = 0.1696, vibrancy = 0.1696,
}, },
}, },

View file

@ -2,7 +2,7 @@ return {
"stevearc/conform.nvim", "stevearc/conform.nvim",
opts = { opts = {
formatters_by_ft = { formatters_by_ft = {
nix = { "nixfmt" }, -- remplace par "alejandra" si tu préfères nix = { "nixfmt" },
}, },
}, },
} }

View file

@ -14,6 +14,7 @@ return {
-- active tous les serveurs ; leurs configs viennent des -- active tous les serveurs ; leurs configs viennent des
-- fichiers lsp/*.lua fournis par nvim-lspconfig (chargé ici) -- fichiers lsp/*.lua fournis par nvim-lspconfig (chargé ici)
vim.lsp.enable({ vim.lsp.enable({
"nil_ls",
"lua_ls", "lua_ls",
"texlab", "texlab",
"marksman", "marksman",

View file

@ -11,6 +11,7 @@
./packages/kitty.nix ./packages/kitty.nix
./packages/mpv.nix ./packages/mpv.nix
./packages/neovim.nix ./packages/neovim.nix
./packages/nextcloud.nix
./packages/other_apps_light.nix ./packages/other_apps_light.nix
./packages/pass.nix ./packages/pass.nix
./packages/texlive.nix ./packages/texlive.nix

View file

@ -11,6 +11,7 @@
./packages/kitty.nix ./packages/kitty.nix
./packages/mpv.nix ./packages/mpv.nix
./packages/neovim.nix ./packages/neovim.nix
./packages/nextcloud.nix
./packages/other_apps.nix ./packages/other_apps.nix
./packages/pass.nix ./packages/pass.nix
./packages/texlive.nix ./packages/texlive.nix

View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}