diff options
| author | user@node5.net <user@node5.net> | 2026-02-11 23:50:59 +0100 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-02-11 23:53:02 +0100 |
| commit | 2781f02094ad67d0a7e919bc478fd928c23df77b (patch) | |
| tree | 334864226802fe2851bec838fe86703372bc26e8 | |
| parent | 4f61a6aded055c8778d59079f1b7253092e6a729 (diff) | |
Indent
Fixes indent blank line lines
| -rw-r--r-- | flake.nix | 59 |
1 files changed, 31 insertions, 28 deletions
@@ -90,14 +90,18 @@ extraPlugins = { smear-cursor = { package = pkgs.vimPlugins.smear-cursor-nvim; - setup = ''require('smear_cursor').setup { - smear_to_cmd = false; - }''; + setup = + '' + require('smear_cursor').setup { + smear_to_cmd = false; + } + ''; }; vim-better-whitespace = { package = pkgs.vimPlugins.vim-better-whitespace; - setup = '' - vim.g.better_whitespace_filetypes_blacklist = { 'dashboard' } -- Don't show whitespace error on dashboard + setup = + '' + vim.g.better_whitespace_filetypes_blacklist = { 'dashboard' } -- Don't show whitespace error on dashboard ''; }; #semshi = { @@ -122,27 +126,27 @@ theme = "powerline"; activeSection.b = [ # Most of this segment is NVF default, except path '' - { - "filetype", - colored = true, - icon_only = true, - icon = { align = 'left' } - } - '' - '' - { - "filename", - path = 3, -- Absolute path, with tilde as the home directory - symbols = {modified = ' ', readonly = ' '}, - separator = {right = ''} - } - '' - '' - { - "", - draw_empty = true, - separator = { left = '', right = '' } - } + { + "filetype", + colored = true, + icon_only = true, + icon = { align = 'left' } + } + '' + '' + { + "filename", + path = 3, -- Absolute path, with tilde as the home directory + symbols = {modified = ' ', readonly = ' '}, + separator = {right = ''} + } + '' + '' + { + "", + draw_empty = true, + separator = { left = '', right = '' } + } '' ]; }; @@ -327,7 +331,6 @@ enableTreesitter = true; # Improved code highlighting markdown.extensions.markview-nvim.enable = true; # Markdown preview }; - treesitter.context = { enable =true; setupOpts = { @@ -335,7 +338,7 @@ separator = null; mode = "topline"; }; - }; + }; minimap = { minimap-vim.enable = false; |
