Skip to content

Commit

Permalink
flake update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gako358 committed Mar 24, 2024
1 parent ac7e5a9 commit bd6220e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 16 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 1 addition & 8 deletions home/programs/config/emacs/config.org
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@ Using dashboard and doom-theme with modeline.
(add-to-list 'default-frame-alist '(height . 64))
(add-to-list 'default-frame-alist '(width . 370))

(use-package vertico-posframe
:ensure t
:custom
(vertico-posframe-parameters
'((left-fringe . 8)
(right-fringe . 8))))

#+end_src

#+RESULTS:
Expand Down Expand Up @@ -518,7 +511,7 @@ Keys that I have binded to my keyboard for easy navigation in emacs
(global-set-key (kbd "S-<down>") 'move-text-down)
(global-set-key (kbd "C-<tab>") 'previous-buffer)
(global-set-key (kbd "C-S-i") 'move-right-and-open-todo)
(global-set-key (kbd "C-n") 'treemacs)
(global-set-key (kbd "C-S-n") 'treemacs)

(use-package which-key
:ensure t
Expand Down
1 change: 0 additions & 1 deletion home/programs/config/emacs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ in
treemacs-persp # Perspective integration for treemacs
tree-sitter # Incremental parsing system for Emacs
tree-sitter-langs # Tree-sitter grammar for various languages
vertico-posframe # Display vertico in a posframe
vterm # Fully-featured terminal emulator
multi-vterm # Multiple vterm buffers
web-mode # Major mode for editing web templates
Expand Down
10 changes: 6 additions & 4 deletions home/programs/git.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{pkgs, ...}: let
{ pkgs, ... }:
let
gitConfig = {
core = {
editor = "nvim";
Expand Down Expand Up @@ -29,7 +30,7 @@
};
color.ui = true;
fetch.prune = true;
pull.rebase = true;
pull.rebase = false;
push.default = "upstream";
push.autoSetupRemote = true;
url = {
Expand All @@ -40,7 +41,8 @@
};

rg = "${pkgs.ripgrep}/bin/rg";
in {
in
{
home.packages = with pkgs.gitAndTools; [
diff-so-fancy # git diff with colors
git-crypt # git files encryption
Expand Down Expand Up @@ -88,5 +90,5 @@ in {
}
];
}
// (pkgs.sxm.git or {});
// (pkgs.sxm.git or { });
}

0 comments on commit bd6220e

Please sign in to comment.