aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha/config/neovim/nixvim
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/autocmds/default.nix4
-rw-r--r--home-manager/soispha/config/neovim/nixvim/options/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/colorscheme/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/femaco/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/femaco/lua/femaco.lua2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/goto-preview/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix4
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/lua/lf-nvim.lua2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lsp-progress-nvim/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix4
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/nvim-cmp/default.nix4
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/frecency/default.nix2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/rooter/lua/rooter.lua2
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/treesitter/default.nix6
16 files changed, 22 insertions, 22 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/autocmds/default.nix b/home-manager/soispha/config/neovim/nixvim/autocmds/default.nix
index b1945944..e7dca8b1 100644
--- a/home-manager/soispha/config/neovim/nixvim/autocmds/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/autocmds/default.nix
@@ -20,14 +20,14 @@
{
event = ["WinLeave"];
pattern = ["*"];
- command = "set nocursorline"; # TODO possible also nocursorcolumn
+ command = "set nocursorline"; # TODO: possible also nocursorcolumn
group = "cursor_off";
description = "Display cursorline and cursorcolumn ONLY in active window.";
}
{
event = ["WinEnter"];
pattern = ["*"];
- command = "set cursorline"; # TODO possible also cursorcolumn
+ command = "set cursorline"; # TODO: possible also cursorcolumn
group = "cursor_off";
description = "Display cursorline and cursorcolumn ONLY in active window.";
}
diff --git a/home-manager/soispha/config/neovim/nixvim/options/default.nix b/home-manager/soispha/config/neovim/nixvim/options/default.nix
index 7d1937a9..879a5cd1 100644
--- a/home-manager/soispha/config/neovim/nixvim/options/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/options/default.nix
@@ -51,7 +51,7 @@
hidden = true; # allows you to hide buffers with unsaved changes without being prompted
- laststatus = 3; # use global statusline # TODO
+ laststatus = 3; # use global statusline # TODO:
list = true; # show whitespace
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/colorscheme/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/colorscheme/default.nix
index db8fde1c..bb1e128c 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/colorscheme/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/colorscheme/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package nightfox though a module
+ # TODO: package nightfox though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/nightfox.lua}
'';
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/femaco/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/femaco/default.nix
index 7e641da4..6d7ec16a 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/femaco/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/femaco/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package femaco though a module
+ # TODO: package femaco though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/femaco.lua}
'';
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/femaco/lua/femaco.lua b/home-manager/soispha/config/neovim/nixvim/plugins/femaco/lua/femaco.lua
index 42ec73c1..228b0aa6 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/femaco/lua/femaco.lua
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/femaco/lua/femaco.lua
@@ -15,7 +15,7 @@ require('femaco').setup({
float_opts = function(code_block)
return {
relative = 'cursor',
- width = clip_val(5, 120, vim.api.nvim_win_get_width(0) - 10), -- TODO how to offset sign column etc?
+ width = clip_val(5, 120, vim.api.nvim_win_get_width(0) - 10), -- TODO: how to offset sign column etc?
height = clip_val(5, #code_block.lines, vim.api.nvim_win_get_height(0) - 6),
anchor = 'NW',
row = 0,
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/goto-preview/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/goto-preview/default.nix
index ea89b045..740bb04c 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/goto-preview/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/goto-preview/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package goto-preview though a module
+ # TODO: package goto-preview though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/goto-preview.lua}
'';
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
index cf0e6d82..ecd1d6cb 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/harpoon/default.nix
@@ -36,9 +36,9 @@ in {
programs.nixvim = {
plugins.harpoon = {
enable = true;
- # menu.width = "vim.api.nvim_win_get_width(0) - 4"; # TODO integrate that
+ # menu.width = "vim.api.nvim_win_get_width(0) - 4"; # TODO: integrate that
keymaps = {
- tmuxGotoTerminal = null; # TODO
+ tmuxGotoTerminal = null; # TODO:
};
};
maps.normalVisualOp =
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix
index 37686779..d344d87e 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package lf-nvim though a module
+ # TODO: package lf-nvim though a module
# FIXME change the nvim path, when I change the path with lf
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/lf-nvim.lua}
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/lua/lf-nvim.lua b/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/lua/lf-nvim.lua
index 1d111a58..60293b60 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/lua/lf-nvim.lua
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/lua/lf-nvim.lua
@@ -3,7 +3,7 @@ local fn = vim.fn
-- Defaults
require("lf").setup({
default_action = "drop", -- default action when `Lf` opens a file
- -- TODO what do these mappings do?
+ -- TODO: what do these mappings do?
default_actions = { -- default action keybindings
["<C-t>"] = "tabedit",
["<C-x>"] = "split",
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lsp-progress-nvim/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lsp-progress-nvim/default.nix
index 71385a91..6602ceb6 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lsp-progress-nvim/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lsp-progress-nvim/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package lsp-progress-nvim though a module
+ # TODO: package lsp-progress-nvim though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/lsp-progress-nvim.lua}
'';
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
index 8415a2e8..de48efea 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
@@ -101,10 +101,10 @@
winbar = {};
inactiveWinbar = {};
- # TODO add all installed and supported extensions here
+ # TODO: add all installed and supported extensions here
extensions = [
"toggleterm"
- # "fugitive" # TODO maybe add this?
+ #"fugitive" # TODO: maybe add this?
];
};
}
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/nvim-cmp/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/nvim-cmp/default.nix
index f8eefa7a..2fd35272 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/nvim-cmp/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/nvim-cmp/default.nix
@@ -1,7 +1,7 @@
{...}: {
programs.nixvim.plugins.nvim-cmp = {
/*
- TODO; integrate this:
+ TODO:; integrate this:
```lua
enabled = {
function()
@@ -22,7 +22,7 @@
enable = true;
mapping = {
- # TODO add support for desc and which key here
+ # TODO: add support for desc and which key here
"<C-d>" = {
action = "cmp.mapping.scroll_docs(-4)";
#desc = "Scroll up by four lines";
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix
index 60f7b715..c583ebf6 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix
@@ -4,7 +4,7 @@
...
}: {
programs.nixvim = {
- # TODO package nvim-lint though a module
+ # TODO: package nvim-lint though a module
extraConfigLuaPost = ''
${lib.strings.fileContents ./lua/nvim-lint.lua}
'';
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/frecency/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/frecency/default.nix
index ab7b9205..4a4c22be 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/frecency/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/frecency/default.nix
@@ -14,7 +14,7 @@
enable = true;
showUnindexed = true;
showScores = true;
- # TODO add this:
+ # TODO: add this:
#db_safe_mode = true;
};
};
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/rooter/lua/rooter.lua b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/rooter/lua/rooter.lua
index 9ea8b88c..1d66931b 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/rooter/lua/rooter.lua
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/rooter/lua/rooter.lua
@@ -14,7 +14,7 @@ end
local log = plenary.log.new({ plugin = "telescope_rooter", level = "info" })
--- TODO expose this function
+-- TODO: expose this function
local toggle = function(_)
vim.g["Telescope#rooter#enabled"] = not vim.g["Telescope#rooter#enabled"]
print("Telescope#rooter#enabled=" ..
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/treesitter/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/treesitter/default.nix
index d206b2a9..9d30d6b9 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/treesitter/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/treesitter/default.nix
@@ -8,11 +8,11 @@
# inject nixvim specific highlighting (eg in extraConfigLua).
nixvimInjections = true;
- # TODO It would we wonderfull, if we could use treesitter in latex
+ # TODO: It would we wonderfull, if we could use treesitter in latex
disabledLanguages = ["latex"];
/*
- # TODO this is not supported by the nixVim modlue, nixNeovim supports this though ..
+ # TODO: this is not supported by the nixVim modlue, nixNeovim supports this though ..
highlight = {
# `false` will disable the whole extension
enable = true;
@@ -29,7 +29,7 @@
incrementalSelection = {
enable = true;
keymaps = {
- # TODO include these
+ # TODO: include these
initSelection = "gnn"; # set to `false` to disable one of the mappings
nodeIncremental = "grn";
scopeIncremental = "grc";