Add commentstring stuff

This commit is contained in:
Anthony Cicchetti 2024-03-11 10:05:31 -04:00
parent 31308cdb64
commit ef4b36bd9d
3 changed files with 6 additions and 3 deletions

View file

@ -68,9 +68,10 @@
conflictStyle = "zdiff3"; conflictStyle = "zdiff3";
}; };
pack = { # Commented out until git 2.44.0 makes its way to nixpkgs
allowPackReuse = "multi"; # pack = {
}; # allowPackReuse = "multi";
# };
push = { push = {
autoSetupRemote = true; autoSetupRemote = true;

View file

@ -84,6 +84,7 @@
extraPlugins = extraPlugins =
( (
with pkgs.vimPlugins; [ with pkgs.vimPlugins; [
nvim-ts-context-commentstring
telescope-zf-native-nvim telescope-zf-native-nvim
vim-ReplaceWithRegister vim-ReplaceWithRegister
vim-bbye vim-bbye

View file

@ -31,6 +31,7 @@ vim.o.title = true
vim.o.updatetime = 500 vim.o.updatetime = 500
vim.o.wildmenu = true vim.o.wildmenu = true
vim.o.wildmode = "list:longest,full" vim.o.wildmode = "list:longest,full"
vim.g.skip_ts_context_commentstring_module = true
vim.api.nvim_create_autocmd("TextYankPost", { vim.api.nvim_create_autocmd("TextYankPost", {
callback = function() callback = function()