How to use GuessIndent plugin and ftplugin files ?
Hello, thanks for your work on GuessIndent plugin : it's a great tool for my neovim usage.
I'm using ftplugin files for C, Go and Python to automatically configure my indent settings (filetype plugin indent on in configuration). For example, ftplugin/python.vim :
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
setlocal smarttab
setlocal expandtab
How to use your plugin to set automatically indentation with ftplugin files ? If your plugin detects an indentation different from my configuration, what configuration will be used ? I want to use my default configuration for C, Go and Python when I work on my projects but I would like to use automatic indentation detected by GuessIndent when I work on external project (common usage : C project indented with TAB of 8, 4 spaces for indent in my personal config for C).
I'm getting race conditions between Guess Indent and after/ftplugins. Did you managed to get this sorted out @lcheylus ?
Sorry, I didn't find a good solution to use the GuessIndent plugin and my config in ftplugin/ files :(