qutebrowser: bookmarks

This commit is contained in:
Hane 2024-07-30 17:13:25 +02:00
commit 01eead9af8
3 changed files with 22 additions and 2 deletions

View file

@ -199,6 +199,9 @@
(setf projectile-completion-system 'helm)
(setf projectile-indexing-method 'alien)
;;Allowing per project compilation command
(setq projectile-per-project-compilation-buffer t)
;; Windows: Let git's UI ask for passphrase
;;(setenv "SSH_ASKPASS" "git-gui--askpass")
;;(require 'exec-path
@ -225,8 +228,11 @@
;; Use better buffer list
(global-set-key (kbd "C-x C-b") 'ibuffer)
;; Allow remember risky variable usage
(advice-add 'risky-local-variable-p :override #'ignore)
;; Skip windows when switching
(defvar ignore-windows-containing-buffers-matching-res '("\"hyprland.*" "Treemacs.*")
(defvar ignore-windows-containing-buffers-matching-res '("Treemacs.*")
"List of regular expressions specifying windows to skip (if window contains buffer that matches, skip)")
(defadvice other-window (before other-window-ignore-windows-containing activate)
@ -392,6 +398,14 @@
;; (customize-set-variable 'treesit-font-lock-level 2)
;; Projectile custom project types
;; .NET C# or F# projects
(projectile-register-project-type 'xdg-desktop-portal-hyprland '("hyprland.portal")
;;:project-file '("?*.csproj" "?*.fsproj")
:compile "ls"
:run "dotnet run"
:test "dotnet test")
(setq-default indent-tabs-mode t)
(setq-default tab-width 4) ; Assuming you want your tabs to be four spaces wide
(global-set-key (kbd "C-/") 'tab-to-tab-stop)
@ -434,7 +448,11 @@
;; If there is more than one, they won't work right.
'(package-selected-packages
'(treemacs-tab-bar treemacs-persp treemacs-magit treemacs-icons-dired treemacs-projectile treemacs-evil treemacs sudo-edit benchmark-init projectile-ripgrep ripgrep helm-projectile projectile ssh-agency tangotango-theme))
'(ripgrep-arguments '("--follow")))
'(ripgrep-arguments '("--follow"))
'(safe-local-variable-values
'((projectile-project-compilation-cmd . "latexmk")
(compilation-read-command)
(compilation-read-command . t))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.