mirror test
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
cfg = config.home.programs.firefox;
|
||||
in {
|
||||
imports = [
|
||||
inputs.nur.hmModules.nur
|
||||
# inputs.nur.hmModules.nur
|
||||
];
|
||||
options = {
|
||||
home.programs.firefox.enable = mkEnableOption "Enables firefox";
|
||||
@@ -27,15 +27,15 @@ in {
|
||||
order = ["DuckDuckGo" "Google"];
|
||||
};
|
||||
bookmarks = {};
|
||||
extensions = with config.nur.repos.rycee.firefox-addons; [
|
||||
ublock-origin
|
||||
sponsorblock
|
||||
clearurls
|
||||
swedish-dictionary
|
||||
reddit-enhancement-suite
|
||||
return-youtube-dislikes
|
||||
enhancer-for-youtube # unfree
|
||||
];
|
||||
# extensions = with config.nur.repos.rycee.firefox-addons; [
|
||||
# ublock-origin
|
||||
# sponsorblock
|
||||
# clearurls
|
||||
# swedish-dictionary
|
||||
# reddit-enhancement-suite
|
||||
# return-youtube-dislikes
|
||||
# enhancer-for-youtube # unfree
|
||||
# ];
|
||||
settings = {
|
||||
"apz.overscroll.enabled" = true;
|
||||
"browser.aboutConfig.showWarning" = false;
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
./gitsigns.nix
|
||||
./treesitter.nix
|
||||
./conform.nix
|
||||
./gx.nix
|
||||
./bqf.nix
|
||||
./colorizer.nix
|
||||
./web-devicons.nix
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
{pkgs, ...}: let
|
||||
gx-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "gx-nvim";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chrishrb";
|
||||
repo = "gx.nvim";
|
||||
rev = "f29a87454b02880e0d76264c21be8316224a7395";
|
||||
hash = "sha256-QWJ/cPvSyMTJoWLg51BNFf9+/9i7G+nzennpHP/eQ4g=";
|
||||
};
|
||||
};
|
||||
in {
|
||||
programs.neovim.plugins = [
|
||||
{
|
||||
plugin = gx-nvim;
|
||||
type = "lua";
|
||||
config =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
''
|
||||
require("gx").setup({})
|
||||
vim.keymap.set({ "n", "x" }, "gx", ":Browse<CR>", {
|
||||
desc = "Open the file under cursor with system app",
|
||||
})
|
||||
'';
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user