Remove unused nvim package
This commit is contained in:
parent
0c8b07077e
commit
d23101d515
2 changed files with 28 additions and 28 deletions
|
@ -11,7 +11,6 @@
|
|||
NIX_BUILD_SHELL = "zsh";
|
||||
};
|
||||
gtk.theme.name = "arc-dark";
|
||||
programs.neovim = import ./vim.nix { pkgs = pkgs; };
|
||||
};
|
||||
users.users.mae = {
|
||||
uid = 1000;
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
{ pkgs, ... }:
|
||||
programs.zsh = {
|
||||
{
|
||||
enable = true;
|
||||
vimdiffAlias = true;
|
||||
withNodeJs = true;
|
||||
programs.neovim = {
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
{
|
||||
plugin = coc-nvim;
|
||||
config = ''
|
||||
enable = true;
|
||||
vimdiffAlias = true;
|
||||
withNodeJs = true;
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
{
|
||||
plugin = coc-nvim;
|
||||
config = ''
|
||||
nmap <silent> <F2> <Plug>(coc-rename)
|
||||
|
||||
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
||||
|
@ -24,27 +25,27 @@ config = ''
|
|||
vnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
|
||||
endif
|
||||
'';
|
||||
}
|
||||
fzf-vim
|
||||
{
|
||||
plugin = iceberg-vim;
|
||||
config = "colorscheme iceberg";
|
||||
}
|
||||
vim-sleuth
|
||||
coc-json
|
||||
coc-html
|
||||
coc-tsserver
|
||||
neoformat
|
||||
undotree
|
||||
{
|
||||
plugin = vim-jsdoc;
|
||||
config = ''
|
||||
}
|
||||
fzf-vim
|
||||
{
|
||||
plugin = iceberg-vim;
|
||||
config = "colorscheme iceberg";
|
||||
}
|
||||
vim-sleuth
|
||||
coc-json
|
||||
coc-html
|
||||
coc-tsserver
|
||||
neoformat
|
||||
undotree
|
||||
{
|
||||
plugin = vim-jsdoc;
|
||||
config = ''
|
||||
let g:jsdoc_formatter = "tsdoc"
|
||||
let g:typescript_indent_disable = 1
|
||||
'';
|
||||
}
|
||||
];
|
||||
extraConfig = ''
|
||||
}
|
||||
];
|
||||
extraConfig = ''
|
||||
set background=dark
|
||||
set termguicolors
|
||||
|
||||
|
@ -55,5 +56,5 @@ extraConfig = ''
|
|||
set completeopt=menuone,noinsert,noselect
|
||||
set shortmess+=c
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue