Jump to content

Translations:Neovim/10/ru: Difference between revisions

From Official NixOS Wiki
Unabomberlive (talk | contribs)
Created page with "==== Пролвинутая ==== <syntaxhighlight lang="nix"> # Глобальная Настройка programs.neovim = { enable = true; defaultEditor = true; viAlias = true; vimAlias = true; configure = { customRC = '' set number set cc=80 set list set listchars=tab:→\ ,space:·,nbsp:␣,trail:•,eol:¶,precedes:«,extends:» if &diff colorscheme blue endif ''; packages.myVimPackage = with pkgs.vimPl..."
 
Unabomberlive (talk | contribs)
Replaced content with "==== Продвинутая ===="
Tag: Replaced
 
Line 1: Line 1:
==== Пролвинутая ====
==== Продвинутая ====
<syntaxhighlight lang="nix">
# Глобальная Настройка
programs.neovim = {
  enable = true;
  defaultEditor = true;
  viAlias = true;
  vimAlias = true;
  configure = {
    customRC = ''
      set number
      set cc=80
      set list
      set listchars=tab:→\ ,space:·,nbsp:␣,trail:•,eol:¶,precedes:«,extends:»
      if &diff
        colorscheme blue
      endif
    '';
    packages.myVimPackage = with pkgs.vimPlugins; {
      start = [ ctrlp ];
    };
  };
};

Latest revision as of 03:47, 5 August 2024

Message definition (Neovim)
==== Advanced ====

Продвинутая