Редактирование стилей Vim

so I just switched to neovim and I need some help because I am not fimiliar with the new envoriment I'm having, which are 2 major ones. And please keep in mind that when I am refering to neovim it is the same thing as refering to vim.

  • Neovim customization
    I would like to know that how can I remove or add items through status bar...I find some items such as the file extension pretty unnecessary and I would like to remove it. And also I am having problems rendering the unix icons as you can see in this picture.
  • Dot Indenting
    I would also like to know how to edit my configuration file in such way that instead of displaying empty space in the indenting lines I can display dots as you can see in this picture.

    Если вы хотите получить информацию о дополнении, вы можете найти мой файл конфигурации neovim здесь и некоторую информацию о системе здесь. Любая помощь будет принята с благодарностью!


  • person KnownAsDon    schedule 12.02.2018    source источник


    Ответы (1)


    Вы можете показать пробелы точками, используя эти команды

    :set list

    :set listchars+=space:.

    Или вы можете заменить . любым другим символом, который вам нравится.

    person Dmitry Biletskyy    schedule 18.02.2018