about summary refs log tree commit diff stats
path: root/modules/home/conf/nvim/files
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
commitc52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c (patch)
treee8b947710b467b32740598ff574982097836f66c /modules/home/conf/nvim/files
parentchore(pkgs/yt): 1.2.1 -> 1.3.0 (diff)
downloadnixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.tar.gz
nixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.zip
refactor(modules): Move all system modules to `by-name`
From now on all modules should be added to the new `by-name` directory.
This should help remove the (superficial and utterly useless)
distinction between `home-manager` and `NixOS` modules.
Diffstat (limited to 'modules/home/conf/nvim/files')
-rw-r--r--modules/home/conf/nvim/files/default.nix9
-rw-r--r--modules/home/conf/nvim/files/ftplugin/tex.lua57
2 files changed, 0 insertions, 66 deletions
diff --git a/modules/home/conf/nvim/files/default.nix b/modules/home/conf/nvim/files/default.nix
deleted file mode 100644
index f935ac7b..00000000
--- a/modules/home/conf/nvim/files/default.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{lib, ...}: {
-  programs.nixvim = {
-    extraFiles = {
-      "ftplugin/tex.lua".text = ''
-        ${lib.strings.fileContents ./ftplugin/tex.lua}
-      '';
-    };
-  };
-}
diff --git a/modules/home/conf/nvim/files/ftplugin/tex.lua b/modules/home/conf/nvim/files/ftplugin/tex.lua
deleted file mode 100644
index f3fffa86..00000000
--- a/modules/home/conf/nvim/files/ftplugin/tex.lua
+++ /dev/null
@@ -1,57 +0,0 @@
--- local used = false;
--- vim.keymap.set('n', '<leader>t', function()
---     used = not used;
---     if used then
---         require('nvim-treesitter.configs').setup {
---             highlight = {
---                 additional_vim_regex_highlighting = { "latex", "markdown" },
---             },
---         }
---     else
---         require('nvim-treesitter.configs').setup {
---             highlight = {
---                 additional_vim_regex_highlighting = { "" },
---             },
---         }
---     end
--- end
--- );
---
---
-
--- Set tex specific telescope extension
-require("telescope").setup({
-  extensions = {
-    bibtex = {
-      -- Depth for the *.bib file
-      depth = 1,
-      -- Path to global bibliographies (placed outside of the project)
-      global_files = {},
-      -- Define the search keys to use in the picker
-      search_keys = { "author", "year", "title" },
-      -- Template for the formatted citation
-      citation_format = "{{author}} ({{year}}), {{title}}.",
-      -- Only use initials for the authors first name
-      citation_trim_firstname = true,
-      -- Max number of authors to write in the formatted citation
-      -- following authors will be replaced by "et al."
-      citation_max_auth = 2,
-      -- Wrapping in the preview window is disabled by default
-      wrap = false,
-      -- Custom format for citation label
-      custom_formats = {
-        { id = "tex_autocite", cite_marker = "\\autocite{%s}" },
-      },
-      format = "tex_autocite",
-      -- Use context awareness
-      context = true,
-      -- Fallback to global/directory .bib files if context not found
-      -- This setting has no effect if context = false
-      context_fallback = true,
-    },
-  },
-})
-require("telescope").load_extension("bibtex")
-vim.keymap.set("n", "<leader>ib", function()
-  require("telescope").extensions.bibtex.bibtex()
-end, { noremap = true, silent = true, desc = "list bibtex entries in telescope" })