Skip to content

Commit

Permalink
fix some stuff n stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymeller committed Dec 10, 2023
1 parent 99a166b commit 1038c25
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dotfiles/nvim/lua/plugins/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require("telescope").setup({
},
defaults = {
file_ignore_patterns = {
".git/",
"%.git/",
"node_modules/",
"target/",
"dist/",
Expand All @@ -18,8 +18,8 @@ require("telescope").setup({
"bin/",
"__pycache__/",
"venv/",
".direnv/",
".cargo/",
"%.direnv/",
"%.cargo/",
},
},
extensions = {
Expand Down
20 changes: 15 additions & 5 deletions programs/git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,25 @@
userName = "Vinny Meller";
userEmail = "[email protected]";
extraConfig = {

# editor-related
core.editor = "nvim";
diff.tool = "vimdiff";
merge.tool = "vimdiff";
mergetool.vimdiff.path = "nvim";
merge.conflictstyle = "diff3";

# pushing & pulling
pull.rebase = true;
push.autoSetupRemote = true;
push.default = "simple";
pull.rebase = true;
core.editor = "nvim";
user.signingkey = "36CBEC89D5C8540C"; # key that goes with the email above
rebase.autosquash = true;

# gpg
commit.gpgSign = true;
tag.gpgSign = true;
# push.gpgSign = true; # none of the hosted git providers support this!
rebase.autosquash = true;
tag.gpgSign = true;
user.signingkey = "36CBEC89D5C8540C"; # key that goes with the email above
};

aliases = {
Expand Down
3 changes: 2 additions & 1 deletion programs/neovim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ in
comment-nvim
copilot-lua
custom-vim-plugins.leetcode-nvim
molten-nvim
diffview-nvim
fidget-nvim
flash-nvim
Expand All @@ -47,6 +46,7 @@ in
lualine-nvim
luasnip
markdown-preview-nvim
molten-nvim
neogit
nui-nvim
nvim-autopairs
Expand All @@ -73,6 +73,7 @@ in
vim-fugitive
vim-indent-object
vim-matchup
vim-sleuth
vim-surround
which-key-nvim
wilder-nvim
Expand Down

0 comments on commit 1038c25

Please sign in to comment.