task | revert change

This commit is contained in:
Don Harper 2025-01-29 23:17:31 -06:00
parent 2a48526b08
commit a7d58d19a2
2 changed files with 56 additions and 30 deletions

View file

@ -55,7 +55,7 @@
lazygit lazygit
links2 links2
liquidprompt liquidprompt
# lunarvim lunarvim
mdcat mdcat
moreutils moreutils
mosh mosh

View file

@ -1,37 +1,63 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
programs.nixvim = { programs.neovim = {
enable = true; enable = true;
defaultEditor = true; defaultEditor = false;
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
vimdiffAlias = true; vimdiffAlias = true;
colorschemes.dracula.enable = true; extraConfig = ''
plugins = { colorscheme dracula
# LazyVim.enable = true; set backspace="indent,eol,start"
# ansible-vim.enable = true; set autoindent
# aurora.enable = true; set expandtab
# vim-airline-themes.enable = true; set tabstop=2
# vim-github-dashboard.enable = true; set shiftwidth=2
# vim-misc.enable = true; set history=50
# vimwiki.enable = true; set ruler
airline.enable = true; set showcmd
bufferline.enable = true; set incsearch
fugitive.enable = true; set hlsearch
gitgutter.enable = true; set nospell
lazygit.enable = true; set modeline
nix.enable = true; set wildmode=longest:full
tmux-navigator.enable = true; set wildmenu
vimux.enable = true; set scrolloff=2
# extraPlugins = with pkgs.vimPlugins [ set number
# CheckAttach set list
# Recover-vim.enable "set listchars="eol:,tab:·,trail:,nbsp:"
# Shade-nvim.enable set background=dark
# SpaceCamp.enable set laststatus=2
# ale.enable set t_Co=256
# vim-markdown.enable let g:ale_linters = { 'nix': ['statix']}
# vim-tmux.enable let g:vimwiki_list = [{'path': '~/org/', 'syntax': 'markdown', 'ext': '.md'}]
# ]; let g:vimwiki_global_ext = 0
}; let g:vimwiki_fold_blank_lines = 0
'';
plugins = with pkgs.vimPlugins; [
CheckAttach
Recover-vim
Shade-nvim # color
SpaceCamp # color
#YouCompleteMe
ale
ansible-vim
aurora # color
dracula-nvim
lazygit-nvim
vim-airline
vim-airline-themes
vim-bufferline
vim-fugitive
vim-gitgutter
vim-github-dashboard
vim-markdown
vim-misc
vim-nix
vim-tmux
vim-tmux-navigator
vimwiki
vimux
];
}; };
imports = [ ./bufferline.nix ]; imports = [ ./bufferline.nix ];
} }