Coder Social home page Coder Social logo

vim-config's Introduction

Rafael Bodill's Neovim Config

Lean mean Neovim machine, 30-45ms startup time. Works best with Neovim ≥0.9

⚙️ See "Extending" for customizing configuration and adding plugins.

🚩 git tag vim tracks the last revision using Dein.nvim and plugins.yaml. Since then, the entire configuration has been rewritten to use lazy.nvim and Lua.

I encourage you to fork this repo and create your own experience. Learn how to tweak and change Neovim to the way YOU like it. This is my cultivation of years of tweaking, use it as a git remote and stay in-touch with upstream for reference or cherry-picking.

Table of Contents (🔎 Click to expand/collapse)

Features

  • Fast startup time — plugins are almost entirely lazy-loaded!
  • Robust, yet light-weight
  • Plugin management with folke/lazy.nvim. Use with :Lazy or Space+l
  • Install LSP, DAP, linters, and formatters. Use with :Mason or Space+mm
  • LSP configuration with nvim-lspconfig
  • telescope.nvim centric work-flow with lists (try ;+f…)
  • Custom context-menu (try it! ;+c)
  • Auto-complete extensive setup with nvim-cmp (try Tab or Ctrl+Space in insert-mode)
  • Structure view with [hedyhli/outline.nvim]
  • Git features using lewis6991/gitsigns.nvim, sindrets/diffview.nvim, and more
  • Session management with folke/persistence.nvim
  • Unobtrusive, yet informative status & tab lines
  • Premium color-schemes
  • Remembers last-used colorscheme

Screenshot

Vim screenshot

Prerequisites

  • git ≥ 2.19.0 (brew install git)
  • Neovim ≥ v0.9.0 (brew install neovim)

Optional, but highly recommended:

  • bat (brew install bat)
  • fd (brew install fd)
  • fzf (brew install fzf)
  • ripgrep (brew install ripgrep)
  • zoxide (brew install zoxide)

Install

  1. Let's clone this repo! Clone to ~/.config/nvim

    mkdir -p ~/.config
    git clone [email protected]:rafi/vim-config.git ~/.config/nvim
    cd ~/.config/nvim
  2. Run nvim (will install all plugins the first time).

    It's highly recommended running :checkhealth to ensure your system is healthy and meet the requirements.

  3. Inside Neovim, run :LazyExtras and use x to install extras.

Enjoy! 😄

Install LSP, DAP, Linters, Formatters

Use :Mason (or Space+mm) to install and manage LSP servers, DAP servers, linters and formatters. See :h mason.nvim and williamboman/mason.nvim for more information.

Language-Server Protocol (LSP)

You can install LSP servers using :Mason UI, or :MasonInstall <name>, or :LspInstall <name> (use Tab to list available servers). See Mason's PACKAGES.md for the official list, and the Language server mapping list. You can also view at :h mason-lspconfig-server-map

You'll need utilities like npm and curl to install some extensions, see requirements (or :h mason-requirements) for more information.

See lua/rafi/plugins/lsp/init.lua for custom key-mappings and configuration for some language-servers.

Recommended LSP

:MasonInstall ansible-language-server bash-language-server css-lsp
:MasonInstall dockerfile-language-server gopls html-lsp json-lsp
:MasonInstall lua-language-server marksman pyright sqlls
:MasonInstall svelte-language-server typescript-language-server
:MasonInstall tailwindcss-language-server
:MasonInstall vim-language-server yaml-language-server

and more

Recommended Linters

:MasonInstall vint shellcheck editorconfig-checker flake8 gitlint hadolint
:MasonInstall markdownlint mypy selene shellharden write-good yamllint

Recommended Formatters

:MasonInstall black fixjson gofumpt golines isort
:MasonInstall shfmt sql-formatter stylua

Recommended Fonts

On macOS with Homebrew, choose one of the Nerd Fonts, for example, here are some popular fonts:

brew tap homebrew/cask-fonts
brew search nerd-font
brew install --cask font-victor-mono-nerd-font
brew install --cask font-iosevka-nerd-font-mono
brew install --cask font-hack-nerd-font
brew install --cask font-fira-code

Upgrade

To upgrade packages and plugins:

  • Neovim plugins: :Lazy update
  • Mason packages: :Mason and press U

To update Neovim configuration from my repo:

git pull --ff --ff-only

Structure

  • after/ — Language specific custom settings and plugins.
  • lua/ — Lua configurations
  • snippets/ — Personal code snippets

Extending

Extend: Config

Fork this repository and create a directory lua/config with one or more of these files: (Optional)

  • lua/config/autocmds.lua — Custom auto-commands
  • lua/config/options.lua — Custom options
  • lua/config/keymaps.lua — Custom key-mappings
  • lua/config/setup.lua — Override config, see extend defaults.

Adding plugins or override existing options:

  • lua/plugins/*.lua or lua/plugins.lua — Plugins (See lazy.nvim for syntax)

Extend: Plugins

Install "extras" plugins using :LazyExtras and installing with x. This saves choices in lazyvim.json which you can also edit manually, here's a recommended starting point:

{
  "extras": [
    "lazyvim.plugins.extras.dap.core",
    "lazyvim.plugins.extras.dap.nlua",
    "lazyvim.plugins.extras.editor.mini-files",
    "lazyvim.plugins.extras.lang.json",
    "lazyvim.plugins.extras.lang.markdown",
    "lazyvim.plugins.extras.test.core",
    "rafi.plugins.extras.coding.align",
    "rafi.plugins.extras.coding.cmp-git",
    "rafi.plugins.extras.coding.copilot",
    "rafi.plugins.extras.editor.harpoon",
    "rafi.plugins.extras.editor.miniclue",
    "rafi.plugins.extras.lang.ansible",
    "rafi.plugins.extras.lang.docker",
    "rafi.plugins.extras.lang.go",
    "rafi.plugins.extras.lang.helm",
    "rafi.plugins.extras.lang.python",
    "rafi.plugins.extras.lang.yaml",
    "rafi.plugins.extras.org.zk",
    "rafi.plugins.extras.ui.alpha",
    "rafi.plugins.extras.ui.deadcolumn"
  ],
  "news": [],
  "version": 2
}

For installing/overriding/disabling plugins, create a lua/plugins/foo.lua file (or lua/plugins/foo/bar.lua or simply lua/plugins.lua) and manage your own plugin collection. You can add or override existing plugins' options, or just disable them all-together. Here's an example:

return {

  -- Disable default tabline
  { 'akinsho/bufferline.nvim', enabled = false },

  -- And choose a different one!
  -- { 'itchyny/lightline.vim' },
  -- { 'vim-airline/vim-airline' },
  -- { 'glepnir/galaxyline.nvim' },
  -- { 'glepnir/spaceline.vim' },
  -- { 'liuchengxu/eleline.vim' },

  -- Enable GitHub's Copilot
  { import = 'rafi.plugins.extras.coding.copilot' },

  -- Enable incline, displaying filenames on each window
  { import = 'rafi.plugins.extras.ui.incline' },

  -- Disable built-in plugins
  { 'shadmansaleh/lualine.nvim', enabled = false },
  { 'limorris/persisted.nvim', enabled = false },

  -- Change built-in plugins' options
  {
    'nvim-treesitter/nvim-treesitter',
    opts = {
      ensure_installed = {
        'bash', 'comment', 'css', 'diff', 'dockerfile', 'fennel', 'fish',
        'gitcommit', 'gitignore', 'gitattributes', 'git_rebase', 'go', 'gomod',
        'gosum', 'gowork', 'graphql', 'hcl', 'html', 'javascript', 'jsdoc',
        'json', 'json5', 'jsonc', 'jsonnet', 'lua', 'make', 'markdown',
        'markdown_inline', 'nix', 'perl', 'php', 'pug', 'python', 'regex',
        'rst', 'ruby', 'rust', 'scss', 'sql', 'svelte', 'terraform', 'toml',
        'tsx', 'typescript', 'vim', 'vimdoc', 'vue', 'yaml', 'zig',
      },
    },
  },

}

Extend: Defaults

  1. Create lua/config/options.lua and set any Neovim/RafiVim/LazyVim features: (Default values are shown)

    -- Enable auto format on-save
    vim.g.autoformat = false
    
    -- Enable elite-mode (hjkl mode. arrow-keys resize window)
    vim.g.elite_mode = false
    
    -- When enabled, 'q' closes any window
    vim.g.window_q_mapping = true
    
    -- Display structure in statusline by default
    vim.g.structure_status = false
  2. Create lua/config/setup.lua and return any of these functions:

    • opts() — Override RafiVim setup options
    • lazy_opts() — override LazyVim setup options

    For example: (Default values are shown)

    local M = {}
    
    ---@return table
    function M.opts()
      return {
        -- See lua/rafi/config/init.lua for all options
      }
    end
    
    ---@return table
    function M.lazy_opts()
      return {
        -- See https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/init.lua
      }
    end
    
    return M

Extend: LSP Settings

To override LSP configurations, you can either:

  1. Customize per project's .neoconf.json

  2. Or, override server options with nvim-lspconfig plugin, for example:

    {
      'neovim/nvim-lspconfig',
      opts = {
        servers = {
          yamlls = {
            filetypes = { 'yaml', 'yaml.ansible', 'yaml.docker-compose' },
          },
          lua_ls = {
            settings = {
              Lua = {
                workspace = { checkThirdParty = false },
                completion = { callSnippet = 'Replace' },
              },
            },
          },
        },
      }
    }

Plugin Highlights

  • Plugin management with cache and lazy loading for speed
  • Auto-completion with Language-Server Protocol (LSP)
  • Project-aware tabline
  • Extensive syntax highlighting with nvim-treesitter.

Note that 95% of the plugins are lazy-loaded.

Plugins Included

List of plugins (🔎 Click to expand/collapse)

Completion & Code-Analysis

Name Description
neovim/nvim-lspconfig Quickstart configurations for the Nvim LSP client
folke/neoconf.nvim Manage global and project-local settings
folke/neodev.nvim Neovim setup for init.lua and plugin development
williamboman/mason.nvim Portable package manager for Neovim
williamboman/mason-lspconfig.nvim Mason extension for easier lspconfig integration
stevearc/conform.nvim Lightweight yet powerful formatter plugin
mfussenegger/nvim-lint Asynchronous linter plugin

Editor Plugins

Name Description
folke/lazy.nvim Modern plugin manager for Neovim
nmac427/guess-indent.nvim Automatic indentation style detection
tweekmonster/helpful.vim Display vim version numbers in docs
lambdalisue/suda.vim An alternative sudo for Vim and Neovim
christoomey/tmux-navigator Seamless navigation between tmux panes and vim splits
folke/persistence.nvim Simple lua plugin for automated session management
RRethy/vim-illuminate Highlights other uses of the word under the cursor
mbbill/undotree Ultimate undo history visualizer
folke/flash.nvim Search labels, enhanced character motions
haya14busa/vim-edgemotion Jump to the edge of block
folke/zen-mode.nvim Distraction-free coding for Neovim
folke/todo-comments.nvim Highlight, list and search todo comments in your projects
folke/trouble.nvim Pretty lists to help you solve all code diagnostics
akinsho/toggleterm.nvim Persist and toggle multiple terminals
[hedyhli/outline.nvim] Code outline sidebar powered by LSP
s1n7ax/nvim-window-picker Window picker
rest-nvim/rest.nvim Fast Neovim http client written in Lua
dnlhc/glance.nvim Pretty window for navigating LSP locations
nvim-pack/nvim-spectre Find the enemy and replace them with dark power
echasnovski/mini.bufremove Helper for removing buffers
mzlogin/vim-markdown-toc Generate table of contents for Markdown files

Coding Plugins

Name Description
hrsh7th/nvim-cmp Completion plugin for neovim written in Lua
hrsh7th/cmp-nvim-lsp nvim-cmp source for neovim builtin LSP client
hrsh7th/cmp-buffer nvim-cmp source for buffer words
hrsh7th/cmp-path nvim-cmp source for path
hrsh7th/cmp-emoji nvim-cmp source for emoji
andersevenrud/cmp-tmux Tmux completion source for nvim-cmp
L3MON4D3/LuaSnip Snippet Engine written in Lua
rafamadriz/friendly-snippets Preconfigured snippets for different languages
saadparwaiz1/cmp_luasnip Luasnip completion source for nvim-cmp
windwp/nvim-autopairs Powerful auto-pair plugin with multiple characters support
echasnovski/mini.surround Fast and feature-rich surround actions
JoosepAlviste/nvim-ts-context-commentstring Set the commentstring based on the cursor location
echasnovski/mini.comment Fast and familiar per-line commenting
echasnovski/mini.splitjoin Split and join arguments
echasnovski/mini.trailspace Trailing whitespace highlight and remove
AndrewRadev/linediff.vim Perform diffs on blocks of code
AndrewRadev/dsf.vim Delete surrounding function call
echasnovski/mini.ai Extend and create a/i textobjects

Colorscheme Plugins

Name Description
rafi/theme-loader.nvim Use last-used colorscheme
rafi/neo-hybrid.vim Modern dark colorscheme, hybrid improved
rafi/awesome-colorschemes Awesome color-schemes
AlexvZyl/nordic.nvim Nord for Neovim, but warmer and darker
folke/tokyonight.nvim Clean, dark Neovim theme
rebelot/kanagawa.nvim Inspired by the colors of the famous painting by Katsushika Hokusai
olimorris/onedarkpro.nvim OneDarkPro theme
EdenEast/nightfox.nvim Highly customizable theme
nyoom-engineering/oxocarbon.nvim Dark and light theme inspired by IBM Carbon
ribru17/bamboo.nvim Warm green theme
catppuccin/nvim Soothing pastel theme

Git Plugins

Name Description
lewis6991/gitsigns.nvim Git signs written in pure lua
sindrets/diffview.nvim Tabpage interface for cycling through diffs
NeogitOrg/neogit Magit clone for Neovim
FabijanZulj/blame.nvim Git blame visualizer
rhysd/git-messenger.vim Reveal the commit messages under the cursor
ruifm/gitlinker.nvim Browse git repositories
rhysd/committia.vim Pleasant editing on Git commit messages

Misc Plugins

Name Description
hoob3rt/lualine.nvim Statusline plugin written in pure lua
nvim-neo-tree/neo-tree.nvim File explorer written in Lua
nvim-telescope/telescope.nvim Find, Filter, Preview, Pick. All lua.
jvgrootveld/telescope-zoxide Telescope extension for Zoxide
rafi/telescope-thesaurus.nvim Browse synonyms from thesaurus.com
nvim-lua/plenary.nvim Lua functions library

Treesitter & Syntax

Name Description
nvim-treesitter/nvim-treesitter Nvim Treesitter configurations and abstraction layer
nvim-treesitter/nvim-treesitter-textobjects Textobjects using treesitter queries
nvim-treesitter/nvim-treesitter-context Show code context
RRethy/nvim-treesitter-endwise Wisely add "end" in various filetypes
windwp/nvim-ts-autotag Use treesitter to auto close and auto rename html tag
andymass/vim-matchup Modern matchit and matchparen
iloginow/vim-stylus Better vim plugin for stylus
mustache/vim-mustache-handlebars Mustache and handlebars syntax
lifepillar/pgsql.vim PostgreSQL syntax and indent
MTDL9/vim-log-highlighting Syntax highlighting for generic log files
reasonml-editor/vim-reason-plus Reason syntax and indent

UI Plugins

Name Description
nvim-tree/nvim-web-devicons Lua fork of vim-devicons
MunifTanjim/nui.nvim UI Component Library
rcarriga/nvim-notify Fancy notification manager for NeoVim
stevearc/dressing.nvim Improve the default vim-ui interfaces
akinsho/bufferline.nvim Snazzy tab/bufferline
folke/noice.nvim Replaces the UI for messages, cmdline and the popupmenu
SmiteshP/nvim-navic Shows your current code context in winbar/statusline
chentau/marks.nvim Interacting with and manipulating marks
lukas-reineke/indent-blankline.nvim Visually display indent levels
echasnovski/mini.indentscope Visualize and operate on indent scope
folke/which-key.nvim Create key bindings that stick
tenxsoydev/tabs-vs-spaces.nvim Hint and fix deviating indentation
t9md/vim-quickhl Highlight words quickly
kevinhwang91/nvim-bqf Better quickfix window in Neovim
uga-rosa/ccc.nvim Super powerful color picker/colorizer plugin
itchyny/calendar.vim Calendar application

Extra Plugins

List of extras (🔎 Click to expand/collapse)

You can view all LazyVim's extras at www.lazyvim.org/extras.

These plugins aren't enabled by default. You'll have to install them using :LazyExtras and installing with x. (Or import them using specs) See Extend: Plugins on how to add plugins and examples.

Following are extra-extras available with Rafi's Neovim on-top of LazyVim's:

Extra Plugins: Coding

Spec: rafi.plugins.extras.coding.<name>

Name Repository Description
align echasnovski/mini.align Align text interactively
cmp-git petertriho/cmp-git Git source for nvim-cmp
copilot zbirenbaum/copilot.lua Fully featured & enhanced copilot
editorconfig sgur/vim-editorconfig EditorConfig plugin written entirely in Vimscript
emmet mattn/emmet-vim Provides support for expanding abbreviations alá emmet
minipairs echasnovski/mini.pairs Automatically manage character pairs
sandwich machakann/vim-sandwich Search, select, and edit sandwich text objects

Extra Plugins: Editor

Spec: rafi.plugins.extras.editor.<name>

Name Repository Description
anyjump pechorin/any-jump.vim Jump to any definition and references without overhead
flybuf glepnir/flybuf.nvim List buffers in a float window
harpoon ThePrimeagen/harpoon Marks for navigating your project
minivisits echasnovski/mini.visits Track and reuse file system visits
sidebar sidebar-nvim/sidebar.nvim Generic and modular lua sidebar
ufo kevinhwang91/nvim-ufo Make folds look modern and keep a high performance

Extra Plugins: Git

Spec: rafi.plugins.extras.git.<name>

Name Repository Description
fugitive tpope/vim-fugitive Git client, including junegunn/gv.vim

Extra Plugins: Lang

Spec: rafi.plugins.extras.lang.<name>

Name Description
ansible syntax pearofducks/ansible-vim, lsp, lint
docker syntax, lsp, lint
go syntax, lsp, formatter, dap leoluz/nvim-dap-go, test nvim-neotest/neotest-go
helm syntax, lsp
python syntax, lsp, dap mfussenegger/nvim-dap-python, test, rafi/neoconf-venom.nvim
yaml syntax, lsp, schemas, b0o/SchemaStore.nvim

Extra Plugins: Linting

Spec: rafi.plugins.extras.linting.<name>

Name Description
ruff ruff for python

Extra Plugins: LSP

Spec: rafi.plugins.extras.lsp.<name>

Key Name Description
gtd hrsh7th/nvim-gtd LSP's go-to definition plugin
inlayhints lvimuser/lsp-inlayhints.nvim Partial implementation of LSP inlay hint
lightbulb kosayoda/nvim-lightbulb VSCode 💡 for neovim's built-in LSP
yaml-companion yaml-companion.nvim Get, set and autodetect YAML schemas in your buffers

Extra Plugins: Org

Spec: rafi.plugins.extras.org.<name>

Key Name Description
kiwi serenevoid/kiwi.nvim Stripped down VimWiki
telekasten renerocksai/telekasten.nvim Manage text-based, markdown zettelkasten or wiki with telescope
vimwiki vimwiki/vimwiki Personal Wiki for Vim
zk-nvim zk-org/zk-nvim Extension for the zk plain text note-taking assistant

Extra Plugins: Treesitter

Spec: rafi.plugins.extras.treesitter.<name>

Key Name Description
treesj Wansmer/treesj Splitting and joining blocks of code

Extra Plugins: UI

Spec: rafi.plugins.extras.ui.<name>

Key Name Description
alpha goolord/alpha-nvim Fast and fully programmable greeter
barbecue utilyre/barbecue.nvim VS Code like winbar
cursorword itchyny/cursorword Underlines word under cursor
cybu ghillb/cybu.nvim Cycle buffers with a customizable notification window
deadcolumn Bekaboo/deadcolumn.nvim Show colorcolumn dynamically
goto-preview rmagatti/goto-preview Preview definitions using floating windows
incline b0o/incline.nvim Floating statuslines
miniclue echasnovski/mini.clue Show next key clues
minimap echasnovski/mini.map Window with buffer text overview, scrollbar and highlights
symbols-outline simrat39/symbols-outline.nvim Tree like view for symbols using LSP

LazyVim Extras

LazyVim is imported in specs (see lua/rafi/config/lazy.lua) Therefore, you can import any of the "Extras" plugins defined at LazyVim/LazyVim and documented in lazyvim.org.

These are only highlights:

Language

  • lazyvim.plugins.extras.lang.json
  • lazyvim.plugins.extras.lang.markdown
  • lazyvim.plugins.extras.lang.terraform
  • lazyvim.plugins.extras.lang.typescript

DAP (Debugging)

Test

Custom Key-mappings

Note that,

  • Leader key set as Space
  • Local-Leader key set as ; and used for navigation and search (Telescope and Neo-tree)
  • Disable in normal mode by enabling elite_mode.
Key-mappings (🔎 Click to expand/collapse) Modes: 𝐍=normal 𝐕=visual 𝐒=select 𝐈=insert 𝐎=operator 𝐂=command

Navigation

Key Mode Action Plugin or Mapping
j / k 𝐍 𝐕 Cursor moves through display-lines g j/k
gj / gk 𝐍 𝐕 𝐒 Jump to edge upward/downward haya14busa/vim-edgemotion
gh / gl 𝐍 𝐕 Easier line-wise movement g^ g$
zl / zh 𝐍 Scroll horizontally and vertically wider z4 l/h
Ctrl+j 𝐍 Move to split below christoomey/tmux-navigator
Ctrl+k 𝐍 Move to upper split christoomey/tmux-navigator
Ctrl+h 𝐍 Move to left split christoomey/tmux-navigator
Ctrl+l 𝐍 Move to right split christoomey/tmux-navigator
Return 𝐍 Toggle fold under cursor za
Shift+Return 𝐍 Focus the current fold by closing all others zMzv
Ctrl+f 𝐂 Move cursor forwards in command Right
Ctrl+b 𝐂 Move cursor backwards in command Left
Ctrl+h 𝐂 Move cursor to the beginning in command Home
Ctrl+l 𝐂 Move cursor to the end in command End
Ctrl+Tab 𝐍 Go to next tab :tabnext
Ctrl+ShiftTab 𝐍 Go to previous tab :tabprevious
Alt+j or ] 𝐍 Go to next tab :tabnext
Alt+k or [ 𝐍 Go to previous tab :tabprevious
Alt+{ 𝐍 Move tab backward :-tabmove
Alt+} 𝐍 Move tab forward :+tabmove

Selection

Key Mode Action Plugin or Mapping
Space+Space 𝐍 𝐕 Toggle visual-line mode V / Escape
v / V 𝐕 Increment/shrink selection nvim-treesitter
gpp 𝐍 Select last paste
sg 𝐕 Replace within selected area
Ctrl+r 𝐕 Replace selection with step-by-step confirmation
> / < 𝐕 Indent and re-select
Tab / Shift+Tab 𝐕 Indent and re-select
I / gI / A 𝐕 Force blockwise operation

Jump To

Key Mode Action Plugin or Mapping
], or [, 𝐍 Next/previous parameter akinsho/bufferline.nvim
]] or [[ 𝐍 Next/previous reference RRethy/vim-illuminate
]q or [q 𝐍 Next/previous on quick-fix :cnext / :cprev
]a or [a 𝐍 Next/previous on location-list :lnext / :lprev
]d or [d 𝐍 Next/previous diagnostics
]e or [e 𝐍 Next/previous error
]w or [w 𝐍 Next/previous warning
]b or [b 𝐍 Next/previous buffer akinsho/bufferline.nvim
]f or [f 𝐍 Next/previous function start echasnovski/mini.ai
]F or [F 𝐍 Next/previous function end echasnovski/mini.ai
]c or [c 𝐍 Next/previous class start echasnovski/mini.ai
]C or [C 𝐍 Next/previous class end echasnovski/mini.ai
]m or [m 𝐍 Next/previous method start echasnovski/mini.ai
]M or [M 𝐍 Next/previous method end echasnovski/mini.ai
]g or [g 𝐍 Next/previous Git hunk lewis6991/gitsigns.nvim
]i or [i 𝐍 Next/previous indent scope echasnovski/mini.indentscope
]s or [s 𝐍 Next/previous misspelled word
]t or [t 𝐍 Next/previous TODO folke/todo-comments.nvim
]z or [z 𝐍 Next/previous whitespace error config/keymaps.lua

Buffers

Key Mode Action Plugin or Mapping
Space+bd 𝐍 Delete buffer echasnovski/mini.bufremove

Clipboard

Key Mode Action Plugin or Mapping
p or P 𝐕 Paste without yank :let @+=@0
Space+y 𝐍 Copy relative file-path to clipboard config/keymaps.lua
Space+Y 𝐍 Copy absolute file-path to clipboard config/keymaps.lua

Auto-Completion

Key Mode Action Plugin or Mapping
Tab / Shift-Tab 𝐈 𝐒 Navigate/open completion-menu nvim-cmp
Tab / Shift-Tab 𝐈 𝐒 Navigate snippet placeholders L3MON4D3/LuaSnip
Ctrl+Space 𝐈 Open completion menu nvim-cmp
Enter 𝐈 Select completion item or expand snippet nvim-cmp
Shift+Enter 𝐈 Select and replace with completion item nvim-cmp
Ctrl+n/p 𝐈 Movement in completion pop-up nvim-cmp
Ctrl+f/b 𝐈 Scroll documentation nvim-cmp
Ctrl+d/u 𝐈 Scroll candidates nvim-cmp
Ctrl+e 𝐈 Abort selection and close pop-up nvim-cmp
Ctrl+l 𝐈 Expand snippet at cursor L3MON4D3/LuaSnip
Ctrl+c 𝐈 Close completion menu nvim-cmp

LSP

Key Mode Action Plugin or Mapping
gr 𝐍 Go to references plugins/lsp/keymaps.lua
gR 𝐍 List references with Trouble folke/trouble.nvim
gd 𝐍 Go to definition plugins/lsp/keymaps.lua
gD 𝐍 Go to declaration plugins/lsp/keymaps.lua
gI 𝐍 Go to implementation plugins/lsp/keymaps.lua
gy 𝐍 Go to type definition plugins/lsp/keymaps.lua
K 𝐍 Show hover help or collapsed fold plugins/lsp/keymaps.lua
gK 𝐍 Show signature help plugins/lsp/keymaps.lua
Space cl 𝐍 Open LSP info window plugins/lsp/keymaps.lua
Space cs 𝐍 Formatter menu selection plugins/lsp/keymaps.lua
Space cr 𝐍 Rename plugins/lsp/keymaps.lua
Space ce 𝐍 Open diagnostics window plugins/lsp/keymaps.lua
Space ca 𝐍 𝐕 Code action plugins/lsp/keymaps.lua
Space cA 𝐍 Source action plugins/lsp/keymaps.lua
Space chi 𝐍 LSP incoming calls plugins/lsp/keymaps.lua
Space cho 𝐍 LSP outgoing calls plugins/lsp/keymaps.lua
Space ud 𝐍 Toggle buffer diagnostics plugins/lsp/keymaps.lua
Space uD 𝐍 Toggle global diagnostics plugins/lsp/keymaps.lua
Space fwa 𝐍 Add workspace folder plugins/lsp/keymaps.lua
Space fwr 𝐍 Remove workspace folder plugins/lsp/keymaps.lua
Space fwl 𝐍 List workspace folders plugins/lsp/keymaps.lua
gpd 𝐍 Glance definitions dnlhc/glance.nvim
gpr 𝐍 Glance references dnlhc/glance.nvim
gpy 𝐍 Glance type definitions dnlhc/glance.nvim
gpi 𝐍 Glance implementations dnlhc/glance.nvim

Diagnostics

Key Mode Action Plugin or Mapping
Space xt 𝐍 List TODO with Trouble folke/todo-comments.nvim
Space xT 𝐍 List TODO/FIXME with Trouble folke/todo-comments.nvim
Space st 𝐍 Select TODO with Telescope folke/todo-comments.nvim
Space sT 𝐍 Select TODO/FIXME with Telescope folke/todo-comments.nvim
Space xx 𝐍 Toggle Trouble folke/trouble.nvim
Space xd 𝐍 Toggle Trouble document folke/trouble.nvim
Space xw 𝐍 Toggle Trouble workspace folke/trouble.nvim
Space xq 𝐍 Toggle Quickfix via Trouble folke/trouble.nvim
Space xl 𝐍 Toggle Locationlist via Trouble folke/trouble.nvim

Coding

Key Mode Action Plugin or Mapping
Ctrl+q 𝐍 Start recording macro q
Space cf 𝐍 𝐕 Format [plugins/formatting.lua]
Space cF 𝐍 𝐕 Format injected langs [plugins/formatting.lua]
Space cc 𝐍 Generate doc annotations [danymat/neogen]
Shift+Return 𝐈 Start new line from any cursor position <C-o>o
] Space 𝐍 Add new line below o<Esc>
[ Space 𝐍 Add new line above O<Esc>
gc 𝐍 𝐕 Comment prefix echasnovski/mini.comment
gcc 𝐍 𝐕 Toggle comments echasnovski/mini.comment
Space+j or k 𝐍 𝐕 Move lines down/up :m
Space+v 𝐍 𝐕 Toggle single-line comments echasnovski/mini.comment
Space+dd 𝐍 𝐕 Duplicate line or selection config/keymaps.lua
Space+p 𝐍 Duplicate paragraph yap<S-}>p
Space+cw 𝐍 Remove all spaces at EOL echasnovski/mini.trailspace
sj / sk 𝐍 Join/split arguments echasnovski/mini.splitjoin
dsf / csf 𝐍 Delete/change surrounding function call AndrewRadev/dsf.vim

Search, Substitute, Diff

Key Mode Action Plugin or Mapping
* / # 𝐍 𝐕 Search partial words g* / g#
g* / g# 𝐍 𝐕 Search whole-word forward/backward * / #
Escape 𝐍 Clear search highlight :nohlsearch
Backspace 𝐍 Match bracket %
Space+bf 𝐍 Diff current windows in tab windo diffthis
ss 𝐍 𝐕 𝐎 Flash jump folke/flash.nvim
S 𝐍 𝐕 𝐎 Flash treesitter folke/flash.nvim
r 𝐎 Flash remote folke/flash.nvim
R 𝐕 𝐎 Flash treesitter search folke/flash.nvim
Ctrl+s 𝐂 Toggle flash in search input folke/flash.nvim

Command & History

Key Mode Action Plugin or Mapping
! 𝐍 Shortcut for shell command :!
g! 𝐍 Read vim command into buffer :put=execute('⌴')
Ctrl+n / p 𝐂 Switch history search pairs /
/ 𝐂 Switch history search pairs Ctrl n/p

File Operations

Key Mode Action Plugin or Mapping
Space+cd 𝐍 Switch tab to the directory of current buffer :tcd %:p:h
Space+w 𝐍 Write buffer to file :write
Ctrl+s 𝐍 𝐕 𝐂 Write buffer to file :write

Editor UI

Key Mode Action Plugin or Mapping
Space ub 𝐍 Toggle structure scope in winbar SmiteshP/nvim-navic
Space uf 𝐍 Toggle format on Save config/keymaps.lua
Space us 𝐍 Toggle spell-checker :setlocal spell!
Space ul 𝐍 Toggle line numbers :setlocal nonumber!
Space uL 𝐍 Toggle relative line numbers :setlocal norelativenumber!
Space uo 𝐍 Toggle hidden characters :setlocal nolist!
Space uu 𝐍 Toggle highlighted search :set hlsearch!
Space uw 𝐍 Toggle wrap :setlocal wrap!
Space ue 𝐍 Toggle indentation lines lukas-reineke/indent-blankline.nvim
Space uh 𝐍 Toggle inlay-hints config/keymaps.lua
Space ui 𝐍 Show highlight groups for word vim.show_pos
Space up 𝐍 Disable auto-pairs windwp/nvim-autopairs
Space ur 𝐍 Redraw, clear hlsearch, and diff update config/keymaps.lua
Space un 𝐍 Dismiss all notifications rcarriga/nvim-notify

Window Management

Key Mode Action Plugin or Mapping
q 𝐍 Quit window (if last window, quit nvim) :quit
Ctrl+x 𝐍 Rotate window placement C-w x
sp 𝐍 Choose a window to edit s1n7ax/nvim-window-picker
sw 𝐍 Switch editing window with selected s1n7ax/nvim-window-picker
sv 𝐍 Horizontal split :split
sg 𝐍 Vertical split :vsplit
st 𝐍 Open new tab :tabnew
so 𝐍 Close other windows :only
sb 𝐍 Previous buffer :b#
sc 𝐍 Close current buffer :close
sd 𝐍 Delete buffer :bdelete
sq 𝐍 Quit window :quit
sx 𝐍 Delete buffer, leave blank window :enew │ bdelete
sz 𝐍 Toggle window zoom :vertical resize │ resize
sh 𝐍 Toggle colorscheme background=dark/light :set background

Plugins

Key Mode Action Plugin or Mapping
;+c 𝐍 Open context-menu lua/rafi/util/contextmenu.lua
gCtrl+o 𝐍 Navigate to previous file on jumplist util/edit.lua
gCtrl+i 𝐍 Navigate to next file on jumplist util/edit.lua
Ctrl+/ 𝐍 Toggle terminal akinsho/toggleterm.nvim
Space l 𝐍 Open Lazy folke/lazy.nvim
Space o 𝐍 Open Outline side [hedyhli/outline.nvim]
Space ? 𝐍 Open the macOS dictionary on current word :!open dict://
Space cp 𝐍 Toggle Markdown preview iamcco/markdown-preview.nvim
Space P 𝐍 Use Marked 2 for real-time Markdown preview Marked 2
Space mc 𝐍 Open color-picker uga-rosa/ccc.nvim
Space tt 𝐍 Open terminal (root dir) config/keymaps.lua
Space tT 𝐍 Open terminal (cwd) config/keymaps.lua
Space tg 𝐍 Open Lazygit (root dir) config/keymaps.lua
Space tG 𝐍 Open Lazygit (cwd) config/keymaps.lua
Space gu 𝐍 Open undo-tree mbbill/undotree
Space gb 𝐍 Git blame FabijanZulj/blame.nvim
Space gB 𝐍 Git blame in window FabijanZulj/blame.nvim
Space gm 𝐍 Reveal commit under cursor rhysd/git-messenger.vim
Space go 𝐍 𝐕 Open SCM detailed URL in browser ruifm/gitlinker.nvim
Space mg 𝐍 Open Neogit NeogitOrg/neogit
Space ml 𝐍 Append modeline to end of buffer config/keymaps.lua
Space mda 𝐕 Sequentially mark region for diff AndrewRadev/linediff.vim
Space mdf 𝐕 Mark region for diff and compare if more than one AndrewRadev/linediff.vim
Space mds 𝐍 Shows the comparison for all marked regions AndrewRadev/linediff.vim
Space mdr 𝐍 Removes the signs denoting the diff regions AndrewRadev/linediff.vim
Space mh 𝐍 Open HTTP Rest UI rest-nvim/rest.nvim
Space mt 𝐍 𝐕 Toggle highlighted word t9md/vim-quickhl
Space mo 𝐍 Update Markdown TOC mzlogin/vim-markdown-toc
Space zz 𝐍 Toggle distraction-free writing folke/zen-mode.nvim

Plugin: Mini.Surround

See echasnovski/mini.surround for more mappings and usage information.

Key Mode Action
sa & movement 𝐍 𝐕 Add surrounding
cs & movement 𝐍 Replace surrounding
ds & movement 𝐍 Delete surrounding
gzf & movement 𝐍 Find surrounding (to the right)
gzF & movement 𝐍 Find surrounding (to the left)
gzh & movement 𝐍 Highlight surrounding
gzn & movement 𝐍 Update neighbor lines

Plugin: Gitsigns

See lewis6991/gitsigns.nvim for more mappings and usage information.

Key Mode Action
]g or ]g 𝐍 Next/previous Git hunk
gs 𝐍 Preview hunk
Space hp 𝐍 Preview hunk inline
Space hb 𝐍 Blame line
Space hs 𝐍 𝐕 Stage hunk
Space hr 𝐍 𝐕 Reset hunk
Space hu 𝐍 Undo stage hunk
Space hS 𝐍 Stage buffer
Space hR 𝐍 Reset buffer
Space hd 𝐍 Diff against the index
Space hD 𝐍 Diff against the last commit
Space hw 𝐍 Toggle word diff
Space hl 𝐍 Publish hunks to location-list
Space htb 𝐍 Toggle git current line blame
Space htd 𝐍 Toggle git deleted
Space htw 𝐍 Toggle git word diff
Space htl 𝐍 Toggle git line highlight
Space htn 𝐍 Toggle git number highlight
Space hts 𝐍 Toggle git signs
ih 𝐎 Select inner hunk operator

Plugin: Diffview

See sindrets/diffview.nvim for more mappings and usage information.

Key Mode Action
Space gd 𝐍 Diff view file history
Space gv 𝐍 Diff view open
Within diffview "view" window
Tab / Shift+Tab 𝐍 Select next/previous entry
; a 𝐍 Focus file
; e 𝐍 Toggle files panel
Within diffview "file" panel
q 𝐍 Close
h 𝐍 Previous entry
o 𝐍 Focus entry
gf 𝐍 Open file
sg 𝐍 Open file in split
st 𝐍 Open file in new tab
Ctrl+r 𝐍 Refresh files
; e 𝐍 Toggle panel
Within diffview "history" panel
q 𝐍 Close diffview
o 𝐍 Focus entry
O 𝐍 Show options

Plugin: Telescope

See telescope.nvim for more mappings and usage information.

Key Mode Action
;r 𝐍 Results of the previous picker
;p 𝐍 List of the previous pickers
;f 𝐍 File search
;g 𝐍 Grep search
;b 𝐍 Buffers
;h 𝐍 Highlights
;j 𝐍 Jump points
;m 𝐍 Marks
;o 𝐍 Vim options
;t 𝐍 LSP workspace symbols
;v 𝐍 𝐕 Yank history
;n 𝐍 Plugins
;k 𝐍 Thesaurus
;u 𝐍 Spelling suggestions
;x 𝐍 Old files
;w 𝐍 Zk notes
;z 𝐍 Zoxide directories
;; 𝐍 Command history
;: 𝐍 Commands
;/ 𝐍 Search history
;dd 𝐍 LSP definitions
;di 𝐍 LSP implementations
;dr 𝐍 LSP references
;da 𝐍 𝐕 LSP code actions
Space / 𝐍 Buffer fuzzy find
Space gs 𝐍 Git status
Space gr 𝐍 Git branches
Space gl 𝐍 Git commits
Space gL 𝐍 Git buffer commits
Space gh 𝐍 Git stashes
Space gt 𝐍 Find symbols matching word under cursor
Space gf 𝐍 Find files matching word under cursor
Space gg 𝐍 𝐕 Grep word under cursor
Space sc 𝐍 Colorschemes
Space sd 𝐍 Document diagnostics
Space sD 𝐍 Workspace diagnostics
Space sh 𝐍 Help tags
Space sk 𝐍 Key-maps
Space sm 𝐍 Man pages
Space ss 𝐍 LSP document symbols
Space sS 𝐍 LSP workspace symbols
Space st 𝐍 Todo list
Space sT 𝐍 Todo/Fix/Fixme list
Space sw 𝐍 Grep string
Within Telescope window
? 𝐍 Keymaps help screen
Ctrl+Space 𝐍 Move from none fuzzy search to fuzzy
jj or Escape 𝐈 Leave Insert mode
i 𝐍 Enter Insert mode (filter input)
q or Escape 𝐍 Exit Telescope
Tab or Shift+Tab 𝐍 𝐈 Next/previous candidate
Ctrl+d/u 𝐍 𝐈 Scroll down/upwards
Ctrl+f/b 𝐍 𝐈 Scroll preview down/upwards
Ctrl+j/k 𝐍 𝐈 Scroll preview vertically
Ctrl+h/l 𝐍 𝐈 Scroll preview horizontally
J or K 𝐍 Select candidates up/downwards
st 𝐍 Open in a new tab
sg 𝐍 Open in a vertical split
sv 𝐍 Open in a split
* 𝐍 Toggle selection
u 𝐍 Drop all
w 𝐍 Smart send to quickfix list
e 𝐍 Send to quickfix list
Ctrl+q 𝐈 Send to quickfix list
dd 𝐍 Delete entry (buffer list)
! 𝐍 Edit in command line

Plugin: Neo-Tree

See nvim-neo-tree/neo-tree.nvim for more mappings and usage information.

Key Mode Action
fe / Spacee 𝐍 Toggle file explorer (root)
fE / SpaceE 𝐍 Toggle file explorer (cwd)
ge 𝐍 Open Git explorer
be 𝐍 Open Buffer explorer
xe 𝐍 Open Document explorer
;a 𝐍 Focus current file in file-explorer
Within Neo-Tree window
g? 𝐍 Show help
q 𝐍 Close window
j or k 𝐍 Move up and down the tree
Tab or Shift+Tab 𝐍 Next or previous source
]g or [g 𝐍 Jump to next/previous git modified node
l 𝐍 Toggle collapse/expand directory or open file
h 𝐍 Collapse directory tree
Return 𝐍 Select window to open file
gr 𝐍 Grep in current position
gf 𝐍 Find files in current position
. 𝐍 Set as root directory
Backspace 𝐍 Change into parent directory
sv or S 𝐍 Open file in a horizontal split
sg or s 𝐍 Open file in a vertical split
st or t 𝐍 Open file in new tab
p 𝐍 Preview toggle
a 𝐍 Create new directories and/or files
N 𝐍 Create new directory
r 𝐍 Rename file or directory
dd 𝐍 Delete
c / m 𝐍 Copy/move
y / x / P 𝐍 Clipboard copy/cut/paste
! 𝐍 Filter
D 𝐍 Filter directories
# 𝐍 Fuzzy sorter
F 𝐍 Filter on submit
Ctrl+c 𝐍 Clear filter
Ctrl+r or R 𝐍 Refresh
fi / fe 𝐍 Include/exclude
H 𝐍 Toggle hidden files
e 𝐍 Toggle auto-expand window width
w 𝐍 Toggle window width
z 𝐍 Collapse all nodes

Plugin: Spectre

See nvim-pack/nvim-spectre for more mappings and usage information.

Key Mode Action
Space+sp 𝐍 Open Spectre window (search & replace)
Space+sp 𝐕 Open Spectre with selection

Plugin: Marks

See chentau/marks.nvim for more mappings and usage information.

Key Mode Action
m, 𝐍 Set the next available alphabetical (lowercase) mark
m; 𝐍 Toggle the next available mark at the current line
m a-z 𝐍 Set mark
dm a-z 𝐍 Remove mark
dm- 𝐍 Delete all marks on the current line
dm<Space> 𝐍 Delete all marks in the current buffer
m] 𝐍 Move to next mark
m[ 𝐍 Move to previous mark
m: a-z 𝐍 Preview mark
m/ 𝐍 List marks from all opened buffers

Plugin: Zk

See zk-org/zk-nvim and zk for more mappings and usage information.

Key Mode Action
Space+zn 𝐍 Ask for title and create new note
Space+zo 𝐍 Browse notes sorted by modification time
Space+zt 𝐍 Browse tags
Space+zf 𝐍 Search notes
Space+zf 𝐕 Search notes with selection
Space+zb 𝐍 Show backlinks
Space+zl 𝐍 Show links

vim-config's People

Contributors

aeruder avatar alexvko avatar d4em0n avatar huynle avatar ialiendeg avatar neowutran avatar rafi avatar sacro avatar thecontinium avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vim-config's Issues

Issue with Neovim and XDG config directory

I've been using your config for the past months.
I really like it, but there is an issue regarding its installation.

The README says you can install it by cloning into the .config/nvim directory (for Neovim):

git clone git://github.com/rafi/vim-config.git "${XDG_CONFIG_HOME:=$HOME/.config}/nvim"

But, in config/vimrc#L14, the path $XDG_CONFIG_HOME.'/vim' is hardcoded. Also note the use of the $XDG_CONFIG_HOME variable, which may be unpopulated on some distros (it should default to ~/.config).

The same hardcoded path is also used at config/init.vim#L34, where you can see a comment which may suggest that the hardcoded path is deliberate:

" For Neovim, use .config/vim instead of .config/nvim

So where are you supposed to install the config for Neovim? If I install it to ~/.config/vim, I must override the default vimrc using nvim -u ~/.config/vim/vimrc. If I want to install it to its official location, I must edit the hardcoded paths and replace .config/vim with .config/nvim.

Can you please update the scripts and add better autodetection (i.e. make both paths valid)? Also, don't forget to set default values for XDG_* variables.
Thanks.

Using Neovim 0.1.6 on Arch Linux, by the way.

E117: Unknown function

make test passes fine, but running make crashes. Here's my error

Error detected while processing /home/tpanetti/.config/nvim/config/vimrc:
line   83:
Vim(python):E117: Unknown function: provider#python#Call
Press ENTER or type command to continue

My OS is Arch

option to display full html-path and math when on line

Hi
thanks again for your nice settings what really eases the work with vim :-)

How can I display (expand) a full html-path/math when the cursor is on the line with the path?

Current view:

some text ... https://github.com/~/vim-config ... more text

Wished view:

some text ... https://github.com/rafi/vim-config  ... more text

I can see (expand) the path/math in the visual mode but this not practical for editing.

Error detected..

Hi my friend me again!
Error detected while processing function 29_ToggleWhitespace:
line12
E28: No such highlight group: BadWhiteSpace

Thanks in advance again

Highlight problem

Hi !
I have a problem and i can't solve it. When i open a file i.e. ~/.Xresources or general.vim or whatever i need to save the file in order to highlight the syntax . Strange isn't it . I have not changed anything from your configuration. I tried syntax on and then it throws error

Error detected while processing function choosewin#color#refresh
E716 key not presen in DIctionary: gui
E15 Invalid expression: a:color[s::Screen]
etc..

I renamed choosewin and then no error but no highlight too.. Only when saving the file
Any idea??
Thanks in advance,
Kostas

PS ArchLinux os . It worked a couple of months ago. rxvt-unicode (it does it in other xfce-terminal too)

Help needed for windows E254

Hi again!
In the firste place no issues in Linux os.
In windows 10 no errors in cterm but when i open gvim then i get the following
Error detected while processing Colorscheme Auto commands for "*":
E254 cannot allocate color #333
Even changing colorscheme does not fix the problem .So gvim cannot render the specified color
somewhere . I tried to find it but no luck .
Any help?
thanks in advance

Unicode characters in statusline

I'm not sure if the unicode symbols in the statusline are supposed to look this way.

statusline

For example, in your README's demo gif, this looks entirely different.

vimwiki is loaded when opening a pandoc/pdc file

When I open a pandoc file then Vimwiki is loaded. What I do not understand since your options do not indicate anything like that:

- repo: vimwiki/vimwiki
  if: empty($VIM_MINIMAL)
  on_ft: [vimwiki, wiki]
  on_map: { n: <Plug> }
  on_cmd: [Vimwiki, VimwikiTabIndex]
  hook_add: |
    let g:vimwiki_use_calendar = 1
    let g:vimwiki_hl_headers = 1
    let g:vimwiki_hl_cb_checked = 1
    let g:vimwiki_autowriteall = 0

The problem is that the folding and other vim-pandoc features get broken. Does anyone has clue what could cause this?

tinyline replaced?

Is tinyline still being used for status? I can't see where it's being loaded.

Auto completion; xterm vs gnome-terminal

Rafi,
I attach two images of autocompletion for python with your config. one is in xterm and the other is in gnome-terminal.
In gnome-terminal, there are weird characters popping up. Do you know how to fix this?

Thank you

xterm raficonfig
terminal raficonfig

Changing colorscheme spews lot of errors

Hi,

I'm getting a lot of errors when changing theme inside any (g)vim session using color or colorscheme command. This seems to be caused by choosewin plugin, removing which fixes the issue.

make install - Failed

I pull the repo.
run "make install" and got the following error:

Error detected while processing command line:
E492: Not an editor command: NeoBundleInstall

Vim8 doesn't work after initial run with Neovim

This might be a dein issue.
I cloned the repository, launched neovim and initialization (dein mostly) completed successfully.

When I executed vim (8.0.1400_2), I got a bunch of errors. Looks like vim doesn't load any plugin from dein's cache:

[dein] Done: (2018/01/07 12:37:38)Press ENTER or type command to continue
~ 1m 45s
❯ nvim ~/.vimrc <=== This works like a charm
~ 2s
❯ vim ~/.vimrc
Error detected while processing function 21_theme_reload:
line 5:
E121: Undefined variable: g:colors_name
E116: Invalid arguments for function writefile
Error detected while processing /Users/yarinb/.config/nvim/config/theme.vim:
line 37:
E185: Cannot find color scheme 'hybrid'
Press ENTER or type command to continue

When I tried it the other way around (first vim, than neovim) things looked better and I got the configuration workin on both.

Not able to install SuperTab

Rafi, first of all! Thank you! This is one of the amazing vim-configs I have experimented with
How to install SuperTab with correct rules in the plugins.yaml? I get this error when I simply do

  • repo: ervandew/supertab
    E475: Invalid argument: pumvisible() ? "<Up>" : "<C-H>"

Could you please suggest the correct configuration for it?

Tinyline symbols not showing

Arrows and master icons not showing in my vim . Terminal urxvt -unicode 3 enabled
and various patched fonts used . ( Menlo for Powerline , Inconsolata for Powerline, Terminus for Powerline)
.All these fonts show the icons when i use Terminator .But in this case vim and vimrc are unusable with weird characters mainly with BS and Del.
Any help would be appreciated. Thanks

Cannot find color scheme 'hybrid'

On running make install got the following error:

[dein]   unite-mark(1 change)
remote/host: python3 host registered plugins ['deoplete']
remote/host: generated the manifest file in "/home/noam/.config/nvim/.init.vim-rplugin~"
[dein] Runtimepath updated: (2016/07/03 18:50:14)
Error detected while processing /home/noam/.config/nvim/config/theme.vim:
line   18:
E185: Cannot find color scheme 'hybrid'
Press ENTER or type command to continue

No colors in terminator/Gnome-Terminal

Rafi,
Your config works for xterm flawlessly with great colors. However, I was not able to make it work for
Gnome-terminal or Terminator in Ubuntu 14.04/16.04

For Terminator(Gnome-Terminal): I did :set guicursor= to get rid of weird characters.
But I don't get any colors (i.e syntax highlighting at all). It's always white text on black background.
This is really not a nvim problem per se.
If I used any init.vim with nvim, I get syntax highlighting and colors but not with you config.
What could have been the issue?

Thank you!

neobundleinstall download uses svn

This may not work out of the box for every user (proxy setup!). I feel that using git download by default would be a good idea (if it's possible to set it somewhere in your setup).

Colorschemes

Trying to change this setup to the nord vim colorscheme(https://github.com/arcticicestudio/nord-vim). Colorscheme works but every time i open vim it says:

Error detected while processing /Users/vincent/.config/nvim/config/theme.vim:
line   31:
E185: Cannot find color scheme 'nord'
Press ENTER or type command to continue

To install I copied this file over to the themes folder. I then edited config/theme.vim and changed let g:theme_name = 'rafi-2017' to let g:theme_name = 'nord'
Thanks in advance!

consider adding a ruby yaml2json

I know this config largely is based around python, but a few points in favor of ruby:

  • It is often installed
  • Both YAML and JSON decoders are builtin since 1.9.something

This may be a good fallback (or even default) when ruby is detected in the path. Here's a working yaml2json that reads from stdin and writes to stdout.

#!/usr/bin/env ruby
require 'yaml'
require 'json'

print JSON.generate YAML.load $stdin.read

This requires a stock ruby install only.

neocomplete error

Hi and well done for your efforts !
i get the following error when i start typing after a fresh install

Messages maintainer: Bram Moolenaar [email protected]
Error detected while processing function neocomplete#handler#_do_auto_complete..126_check_fallback:
line 3:
E121: Undefined variable: neocomplete
Error detected while processing function neocomplete#handler#do_auto_complete..126_check_fallback:
line 3:
E15: Invalid expression: empty(g:neocomplete#fallback_mappings) && len(matchstr(cur_text, '\h\w
$')) >= g:neocomplete#auto_completion_start_length && !neocomplete.skip_next_complete && !neocomplete#complete#_check_previous_position( cur_text, complete_pos)
Error detected while processing function neocomplete#handler#_do_auto_complete..126_check_fallback:
line 3:
E121: Undefined variable: neocomplete
Error detected while processing function neocomplete#handler#do_auto_complete..126_check_fallback:
line 3:
E15: Invalid expression: empty(g:neocomplete#fallback_mappings) && len(matchstr(cur_text, '\h\w
$')) >= g:neocomplete#auto_completion_start_length && !neocomplete.skip_next_complete && !neocomplete#complete#_check_previous_position( cur_text, complete_pos)
... the list is not ended..
All have to do with neocomplete..

Any idea?

command to past a pattern to the end of the line is not working correctly

Hi Rafi,

thanks for your great config!
One issue I have with it, is that the following mapping to paste a pattern to the end of the line does not paste the pattern to the end of the line but to the beginning of the next line.

noremap <leader>td $ "=strftime(" @DONE: %Y-%m-%d")<CR>P 

So far this mapping worked as expected but not with your configuration. Do you know which setting (or what else) may cause this?

Many thanks
David

Warning when doing make update

When running make update, I get the following set of repeated warnings after doing yes.

[neobundle] `NeoBundle` commands must be executed within a neobundle#begin/end block. Please check your usage.

Although, the update proceeds after throwing up a good deal of these. It could be because of newer changes in neobundle. You may wish to check.

usage of colorscheme

Another question: How can I use your colorscheme settings after I have used another colorscheme?

The thing is that when I change the colorscheme (in the command line only and not the init.vim) nvim/vim uses the last colorscheme set at startup.

deoplete-jedi update error

Error while running: call dein#update()

[dein] Update started: (2016/11/27 00:02:11)                                                                                                      
[dein] /home/noam/.cache/vim/dein/repos/github.com/zchee/deoplete-jedi                                                                            
[dein] Already up-to-date.error: no such remote ref 2ba78ab725f1e02dfef8bc50b0204cf656e8ee23                                                      
[dein] Fetched in submodule path 'rplugin/python3/deoplete/jedi', but it did not contain 2ba78ab725f1e02dfef8bc50b0204cf656e8ee23. Direct fetching
 of that commit failed.                                                                                                                           
[dein] Error installing plugins:                                                                                                                  
[dein]   deoplete-jedi                                              

Later when I use vim, and try to edit a file, I get:

 [deoplete] Traceback (most recent call last):                                                                                                     
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/deoplete.py", line 39, in completion_
begin                                                                                                                                             
[deoplete]     complete_position, candidates = self.gather_candidates(context)                                                                    
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/deoplete.py", line 58, in gather_cand
idates                                                                                                                                            
[deoplete]     self.check_recache(context)                                                                                                        
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/deoplete.py", line 368, in check_reca
che                                                                                                                                               
[deoplete]     self.on_event(context)                                                                                                             
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/deoplete.py", line 380, in on_event  
[deoplete]     source.on_event(context)                                                                                                           
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/source/tag.py", line 34, in on_event 
[deoplete]     self.__tagfiles[context['bufnr']] = self.__get_tagfiles(context)                                                                   
[deoplete]   File "/home/noam/.cache/vim/dein/repos/github.com/Shougo/deoplete.nvim/rplugin/python3/deoplete/source/tag.py", line 58, in __get_tag
files                                                                                                                                             
[deoplete]     'exists', '*neoinclude#include#get_tag_files') else []                                                                             
[deoplete]   File "/usr/lib/python3.5/site-packages/neovim/api/nvim.py", line 230, in call                                                        
[deoplete]     return self.request('nvim_call_function', name, args, **kwargs)                                                                    
[deoplete]   File "/usr/lib/python3.5/site-packages/neovim/api/nvim.py", line 131, in request                                                     
[deoplete]     res = self._session.request(name, *args, **kwargs)                                                                                 
[deoplete]   File "/usr/lib/python3.5/site-packages/neovim/msgpack_rpc/session.py", line 98, in request                                           
[deoplete]     raise self.error_wrapper(err)                                                                                                      
[deoplete] neovim.api.nvim.NvimError: b'Vim(return):E121: Undefined variable: command'                                                            
[deoplete] Error while gathering completions.  Use :messages for error details.                                                                   
E45: 'readonly' option is set (add ! to override) 

completion config for other languages

Hi rafi

First, let me thank you for this awesome vim config.

I've been trying to enable completion for go language without luck and I wonder what needs to be done to enable go lang (and other languages, let's say elm or typescript) using this configuration.

Depending how complex (or doable) is it, I would like to contribute a small piece into the readme, but first I need some pointers

Thank you!

Errors installing and afterwards

Hi,

I had a real old copy of your config and I wanted to upgrade it.
Turns out you changed the whole setup (:

But I'm having troubles with the new version.
First, I cleaned all .vim* and related files in my home and home/.cache folders.
Then I went with your installation steps
I had to replace vim with vim-nox since my repo-downloaded vim didn't have lua or python support in it.

1- Having to use SPACE + ENTER during installation due to "more" command is a drag.

2- Right after installing, even before using vim I have this error on my console:

Error detected while processing /root/.vim/config/theme.vim:
line   16:
E185: Cannot find color scheme 'hybrid'
Press ENTER or type command to continue

3- Then I tried opening the file to check what's inside and got a brand new error.

[10:10] [email protected]: ~/.vim # vim /root/.vim/config/theme.vim
Error detected while processing /root/.cache/vim/dein/.dein/plugin/parenmatch.vim:
line   21:
E216: No such group or event: OptionSet matchpairs call parenmatch#setup()
Press ENTER or type command to continue

4- When you click Enter to that message, you're presented with another one:

"~/.vim/config/theme.vim" 20L, 392C
[dein] #User#dein#source#unite.vim is deprecated.
[dein] Please use new hook feature instead.
[dein] #User#dein#source#vimfiler.vim is deprecated.
[dein] Please use new hook feature instead.
Press ENTER or type command to continue

I did open that file afterwards.
Then I tried another file.

I must admit, it does have a a sleek theme and I liked it. But after a quick glance and compared to your old version, I found out that there's some stuff that's rather disturbing as well.

Autocomplete function does mess with using TAB.
When you double click mouse, it does insert random strings here and there AND it the search function went ballistic on me. Tried searching for whatever I don't know, added error lines in the file I was working on.

Again, with using mouse, I tried to copy some part of the text since I wanted to copy it.
Well, turns out I can't. I started seeing "Invalid register name" errors on the command section. Starting from whatever and continuing with many other error messages E354, E348 etc.

Furthermore, The bottom left area where you show the name of the file has an error where it shows the name of
config/vimrc as confi/vimrc

2016-04-29_11-44-22

I think you should try a clean install and see all those errors for yourself.
I admit.... Right now it's not of much use to me and the old one seems safer to use.

odin_-plesk-xshell_5 free_for_homeschool _2016-04-29_11-57-31

cheat sheet

The config is very nice. It'd be great if there is a handy cheat sheet.

Weird characters in html page

Hi again .
i opened a test html file , plain one i typed html5 and chose the snippet , saved it and opened in browser
this is the source code of Crhome (archlinux)

<title><`2`></title> <`3`> What i saw in vim when i saved the file was nothing between body and title. Why is this happening with these <'2'> <'3'> ? I tried to wrote something in between but these characters persisted . Any idea? I haven't changed anything in your configuration.

Theme problem

Is it possible to use the theme for statusbar without changing the background? I'd like to use only the status bar theme, but if I remove the set background=dark the background goes to the light theme, not the default (white) from my terminal.

python folding

just curious of folding works properly for you on python files. doesn't seem to using your config. always folds at the highest defined method.

something like https://github.com/tmhedberg/SimpylFold might be a better option than using the indent foldmethod.

Improve README

Improve the README with latest plugins and key mappings.

"Cannot find color scheme 'hybrid'"

When I open Neovim, I get this error:

Error detected while processing /home/booker/.vim/config/theme.vim:
line   20:
E185: Cannot find color scheme 'hybrid'
Press ENTER or type command to continue

why this theme its so lagging?

When I open vim on windows wsl-terminal, it indeed looks great, this theme. But when I scroll or pgdown its lagging. When I open in with normal windows wsl bash, its much faster, but then I can see that during scrolling, right side of each word gets dark. Is it due to rerendering so much?

Unknown function: ColorSchemeTheme

Hello Sir,
I installed latest vim-config following your steps, and run vim in terminal
there's some errors here:
Error detected while processing ColorScheme Auto commands for "*":
E117: Unknown function: ColorSchemeTheme

Could you help?
Thanks

Question about Makefile

I am running Neovim 0.1.2.

When I run make test I get an error:

I also get an error when I run make install

I'm a bit confused because these commands are based on Vim not Neovim. I appreciate that these commands are under the Vim heading but because the Neovim instructions assume you have already run git clone git://github.com/rafi/vim-config.git ~/.vim, I inferred you need to run the Vim and Neovim instructions.

Can you please clarify? Thanks.

Vimwiki no matching autocommands vim8 cygwin

Vim version on cygwin

VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Dec  7 2017 04:42:02)
Included patches: 1-1376
Modified by <[email protected]>
Compiled by <[email protected]>
Huge version without GUI.  Features included (+) or not (-):
+acl               +farsi             +mouse_sgr         -tag_any_white
+arabic            +file_in_path      -mouse_sysmouse    -tcl
+autocmd           +find_in_path      +mouse_urxvt       +termguicolors
-autoservername    +float             +mouse_xterm       +terminal
-balloon_eval      +folding           +multi_byte        +terminfo
+balloon_eval_term -footer            +multi_lang        +termresponse
-browse            +fork()            -mzscheme          +textobjects
++builtin_terms    +gettext           +netbeans_intg     +timers
+byte_offset       -hangul_input      +num64             +title
+channel           +iconv             +packages          -toolbar
+cindent           +insert_expand     +path_extra        +user_commands
-clientserver      +job               +perl/dyn          +vertsplit
+clipboard         +jumplist          +persistent_undo   +virtualedit
+cmdline_compl     +keymap            +postscript        +visual
+cmdline_hist      +lambda            +printer           +visualextra
+cmdline_info      +langmap           +profile           +viminfo
+comments          +libcall           +python/dyn        +vreplace
+conceal           +linebreak         +python3/dyn       +wildignore
+cryptv            +lispindent        +quickfix          +wildmenu
+cscope            +listcmds          +reltime           +windows
+cursorbind        +localmap          +rightleft         +writebackup
+cursorshape       +lua/dyn           +ruby/dyn          -X11
+dialog_con        +menu              +scrollbind        -xfontset
+diff              +mksession         +signs             -xim
+digraphs          +modify_fname      +smartindent       -xpm
-dnd               +mouse             +startuptime       -xsmp
-ebcdic            -mouseshape        +statusline        -xterm_clipboard
+emacs_tags        +mouse_dec         -sun_workshop      -xterm_save
+eval              -mouse_gpm         +syntax            
+ex_extra          -mouse_jsbterm     +tag_binary        
+extra_search      +mouse_netterm     +tag_old_static    
   system vimrc file: "/etc/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
       defaults file: "$VIMRUNTIME/defaults.vim"
  fall-back for $VIM: "/etc"
 f-b for $VIMRUNTIME: "/usr/share/vim/vim80"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H     -ggdb -O2 -pipe -Wimplicit-function-declaration -fdebug-prefix-map=/usr/src/ports/vim/vim-8.0.1376-1.x86_64/build=/usr/src/debug/vim-8.0.1376-1 -fdebug-prefix-map=/usr/src/ports/vim/vim-8.0.1376-1.x86_64/src/vim-8.0.1376=/usr/src/debug/vim-8.0.1376-1 -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1       
Linking: gcc   -L. -fstack-protector  -fstack-protector-strong -L/usr/local/lib -Wl,--as-needed -o vim.exe        -lm -lelf    -lncursesw -liconv -lacl -lattr -lintl   -Wl,--enable-auto-import -Wl,--export-all-symbols -Wl,--enable-auto-image-base -fstack-protector-strong  -L/usr/lib/perl5/5.26/x86_64-cygwin-threads/CORE -lperl -lpthread -ldl -lcrypt        

In my test repo, I stripped most vimscript out except for the dein and vimwiki parts.
Then I executed the following commands in shell

make uninstall
make install
vim -V9log

In vim command mode execute the following command

:VimwikiIndex

During the execution I see an error/warning

No matching commands

which is also recorded in :messages.

Here is the log file

chdir(/etc)
fchdir() to previous dir
sourcing "/etc/vimrc"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 50: sourcing "/usr/share/vim/vim80/syntax/syntax.vim"
Searching for "syntax/synload.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/synload.vim"
Searching for "/usr/share/vim/vimfiles/syntax/synload.vim"
Searching for "/usr/share/vim/vim80/syntax/synload.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 19: sourcing "/usr/share/vim/vim80/syntax/synload.vim"
Searching for "syntax/syncolor.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/syncolor.vim"
Searching for "/usr/share/vim/vimfiles/syntax/syncolor.vim"
Searching for "/usr/share/vim/vim80/syntax/syncolor.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 21: sourcing "/usr/share/vim/vim80/syntax/syncolor.vim"
finished sourcing /usr/share/vim/vim80/syntax/syncolor.vim
continuing in /usr/share/vim/vim80/syntax/synload.vim
Searching for "/usr/share/vim/vimfiles/after/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/syncolor.vim"
finished sourcing /usr/share/vim/vim80/syntax/synload.vim
continuing in /usr/share/vim/vim80/syntax/syntax.vim
Searching for "filetype.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/filetype.vim"
Searching for "/usr/share/vim/vimfiles/filetype.vim"
Searching for "/usr/share/vim/vim80/filetype.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 25: sourcing "/usr/share/vim/vim80/filetype.vim"
Searching for "ftdetect/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftdetect/*.vim"
Searching for "/usr/share/vim/vimfiles/ftdetect/*.vim"
Searching for "/usr/share/vim/vim80/ftdetect/*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftdetect/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftdetect/*.vim"
not found in 'runtimepath': "ftdetect/*.vim"
finished sourcing /usr/share/vim/vim80/filetype.vim
continuing in /usr/share/vim/vim80/syntax/syntax.vim
Searching for "/usr/share/vim/vimfiles/after/filetype.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/filetype.vim"
finished sourcing /usr/share/vim/vim80/syntax/syntax.vim
continuing in /etc/vimrc
Searching for "filetype.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/filetype.vim"
Searching for "/usr/share/vim/vimfiles/filetype.vim"
Searching for "/usr/share/vim/vim80/filetype.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 54: sourcing "/usr/share/vim/vim80/filetype.vim"
finished sourcing /usr/share/vim/vim80/filetype.vim
continuing in /etc/vimrc
Searching for "/usr/share/vim/vimfiles/after/filetype.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/filetype.vim"
Searching for "ftplugin.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin.vim"
Searching for "/usr/share/vim/vim80/ftplugin.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 54: sourcing "/usr/share/vim/vim80/ftplugin.vim"
finished sourcing /usr/share/vim/vim80/ftplugin.vim
continuing in /etc/vimrc
Searching for "/usr/share/vim/vimfiles/after/ftplugin.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin.vim"
finished sourcing /etc/vimrc
chdir(/cygdrive/c/Users/andre)
fchdir() to previous dir
could not source "$HOME/.vimrc"
chdir(/cygdrive/c/Users/andre/.vim)
fchdir() to previous dir
sourcing "~/.vim/vimrc"
chdir(/cygdrive/c/Users/andre/.config/nvim/config)
fchdir() to previous dir
line 3: sourcing "/cygdrive/c/Users/andre/.config/nvim/config/vimrc"
chdir(/cygdrive/c/Users/andre/.config/nvim/config)
fchdir() to previous dir
line 4: sourcing "/cygdrive/c/Users/andre/.config/nvim/config/init.vim"
finished sourcing /cygdrive/c/Users/andre/.config/nvim/config/init.vim
continuing in function <SNR>8_source_file
chdir(/cygdrive/c/Users/andre/.config/nvim/config)
fchdir() to previous dir
line 4: sourcing "/cygdrive/c/Users/andre/.config/nvim/config/terminal.vim"
finished sourcing /cygdrive/c/Users/andre/.config/nvim/config/terminal.vim
continuing in function <SNR>8_source_file
Searching for "autoload/dein.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/dein.vim"
Searching for "/usr/share/vim/vimfiles/autoload/dein.vim"
Searching for "/usr/share/vim/vim80/autoload/dein.vim"
Searching for "/usr/share/vim/vimfiles/after/autoload/dein.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/autoload/dein.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload)
fchdir() to previous dir
line 109: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein.vim
continuing in /cygdrive/c/Users/andre/.config/nvim/config/vimrc
chdir(/cygdrive/c/Users/andre/.cache/vim/dein)
fchdir() to previous dir
line 10: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/state_vim.vim"
Searching for "ftoff.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftoff.vim"
Searching for "/usr/share/vim/vimfiles/ftoff.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftoff.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftoff.vim"
Searching for "/usr/share/vim/vim80/ftoff.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 10: sourcing "/usr/share/vim/vim80/ftoff.vim"
finished sourcing /usr/share/vim/vim80/ftoff.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/state_vim.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftoff.vim"
Searching for "/usr/share/vim/vimfiles/after/ftoff.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftoff.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/state_vim.vim
continuing in function dein#load_state
Searching for "filetype.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/filetype.vim"
Searching for "/usr/share/vim/vimfiles/filetype.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/filetype.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/filetype.vim"
Searching for "/usr/share/vim/vim80/filetype.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 133: sourcing "/usr/share/vim/vim80/filetype.vim"
Searching for "ftdetect/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftdetect/*.vim"
Searching for "/usr/share/vim/vimfiles/ftdetect/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftdetect/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftdetect/*.vim"
Searching for "/usr/share/vim/vim80/ftdetect/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftdetect/*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftdetect/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftdetect/*.vim"
not found in 'runtimepath': "ftdetect/*.vim"
finished sourcing /usr/share/vim/vim80/filetype.vim
continuing in /cygdrive/c/Users/andre/.config/nvim/config/vimrc
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/filetype.vim"
Searching for "/usr/share/vim/vimfiles/after/filetype.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/filetype.vim"
Searching for "ftplugin.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin.vim"
Searching for "/usr/share/vim/vim80/ftplugin.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 133: sourcing "/usr/share/vim/vim80/ftplugin.vim"
finished sourcing /usr/share/vim/vim80/ftplugin.vim
continuing in /cygdrive/c/Users/andre/.config/nvim/config/vimrc
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin.vim"
Searching for "indent.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/indent.vim"
Searching for "/usr/share/vim/vimfiles/indent.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/indent.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/indent.vim"
Searching for "/usr/share/vim/vim80/indent.vim"
chdir(/usr/share/vim/vim80)
fchdir() to previous dir
line 133: sourcing "/usr/share/vim/vim80/indent.vim"
finished sourcing /usr/share/vim/vim80/indent.vim
continuing in /cygdrive/c/Users/andre/.config/nvim/config/vimrc
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/indent.vim"
Searching for "/usr/share/vim/vimfiles/after/indent.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/indent.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 134: sourcing "/usr/share/vim/vim80/syntax/syntax.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 15: sourcing "/usr/share/vim/vim80/syntax/nosyntax.vim"
finished sourcing /usr/share/vim/vim80/syntax/nosyntax.vim
continuing in /usr/share/vim/vim80/syntax/syntax.vim
Searching for "syntax/synload.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/synload.vim"
Searching for "/usr/share/vim/vimfiles/syntax/synload.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/synload.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/synload.vim"
Searching for "/usr/share/vim/vim80/syntax/synload.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 19: sourcing "/usr/share/vim/vim80/syntax/synload.vim"
Searching for "syntax/syncolor.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/syncolor.vim"
Searching for "/usr/share/vim/vimfiles/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/syncolor.vim"
Searching for "/usr/share/vim/vim80/syntax/syncolor.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 21: sourcing "/usr/share/vim/vim80/syntax/syncolor.vim"
finished sourcing /usr/share/vim/vim80/syntax/syncolor.vim
continuing in /usr/share/vim/vim80/syntax/synload.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/syncolor.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/syncolor.vim"
finished sourcing /usr/share/vim/vim80/syntax/synload.vim
continuing in /usr/share/vim/vim80/syntax/syntax.vim
finished sourcing /usr/share/vim/vim80/syntax/syntax.vim
continuing in /cygdrive/c/Users/andre/.config/nvim/config/vimrc
finished sourcing /cygdrive/c/Users/andre/.config/nvim/config/vimrc
continuing in /cygdrive/c/Users/andre/.config/nvim/vimrc
finished sourcing ~/.vim/vimrc
Searching for "pack/*/start/*" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/pack/*/start/*"
Searching for "/usr/share/vim/vimfiles/pack/*/start/*"
Searching for "/usr/share/vim/vim80/pack/*/start/*"
Searching for "/usr/share/vim/vimfiles/after/pack/*/start/*"
Searching for "/cygdrive/c/Users/andre/.vim/after/pack/*/start/*"
not found in 'packpath': "pack/*/start/*"
Searching for "plugin/**/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/plugin/**/*.vim"
Searching for "/usr/share/vim/vimfiles/plugin/**/*.vim"
chdir(/usr/share/vim/vimfiles/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vimfiles/plugin/fzf.vim"
Searching for "autoload/fzf.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/fzf.vim"
Searching for "/usr/share/vim/vimfiles/autoload/fzf.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/fzf.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/autoload/fzf.vim"
Searching for "/usr/share/vim/vim80/autoload/fzf.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/autoload/fzf.vim"
Searching for "/usr/share/vim/vimfiles/after/autoload/fzf.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/autoload/fzf.vim"
not found in 'runtimepath': "autoload/fzf.vim"
finished sourcing /usr/share/vim/vimfiles/plugin/fzf.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/plugin/**/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/plugin/**/*.vim"
Searching for "/usr/share/vim/vim80/plugin/**/*.vim"
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/getscriptPlugin.vim"
finished sourcing /usr/share/vim/vim80/plugin/getscriptPlugin.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/gzip.vim"
finished sourcing /usr/share/vim/vim80/plugin/gzip.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/logiPat.vim"
finished sourcing /usr/share/vim/vim80/plugin/logiPat.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/manpager.vim"
finished sourcing /usr/share/vim/vim80/plugin/manpager.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/matchparen.vim"
finished sourcing /usr/share/vim/vim80/plugin/matchparen.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/netrwPlugin.vim"
finished sourcing /usr/share/vim/vim80/plugin/netrwPlugin.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/rrhelper.vim"
finished sourcing /usr/share/vim/vim80/plugin/rrhelper.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/spellfile.vim"
finished sourcing /usr/share/vim/vim80/plugin/spellfile.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/tarPlugin.vim"
finished sourcing /usr/share/vim/vim80/plugin/tarPlugin.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/tohtml.vim"
finished sourcing /usr/share/vim/vim80/plugin/tohtml.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/vimballPlugin.vim"
finished sourcing /usr/share/vim/vim80/plugin/vimballPlugin.vim
chdir(/usr/share/vim/vim80/plugin)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/plugin/zipPlugin.vim"
finished sourcing /usr/share/vim/vim80/plugin/zipPlugin.vim
Searching for "pack/*/start/*" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/pack/*/start/*"
Searching for "/usr/share/vim/vimfiles/pack/*/start/*"
Searching for "/usr/share/vim/vim80/pack/*/start/*"
Searching for "/usr/share/vim/vimfiles/after/pack/*/start/*"
Searching for "/cygdrive/c/Users/andre/.vim/after/pack/*/start/*"
not found in 'packpath': "pack/*/start/*"
Searching for "plugin/**/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/plugin/**/*.vim"
Searching for "/usr/share/vim/vimfiles/after/plugin/**/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/plugin/**/*.vim"
not found in 'runtimepath': "plugin/**/*.vim"
Reading viminfo file "/cygdrive/c/Users/andre/.viminfo" info oldfiles
Searching for "syntax/syncolor.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/syncolor.vim"
Searching for "/usr/share/vim/vimfiles/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/syncolor.vim"
Searching for "/usr/share/vim/vim80/syntax/syncolor.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
sourcing "/usr/share/vim/vim80/syntax/syncolor.vim"
finished sourcing /usr/share/vim/vim80/syntax/syncolor.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/syncolor.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/syncolor.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/syncolor.vim"

Executing CmdUndefined Auto commands for "*"
autocommand call dein#autoload#_on_pre_cmd(expand('<afile>'))

Searching for "autoload/dein/autoload.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/dein/autoload.vim"
Searching for "/usr/share/vim/vimfiles/autoload/dein/autoload.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/autoload.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein)
fchdir() to previous dir
line 0: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/autoload.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/autoload.vim
continuing in CmdUndefined Auto commands for "*"
Executing FuncUndefined Auto commands for "*"
autocommand call dein#autoload#_on_func(expand('<afile>'))

Searching for "autoload/dein/util.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/dein/util.vim"
Searching for "/usr/share/vim/vimfiles/autoload/dein/util.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/util.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/util.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein/util.vim
continuing in function dein#autoload#_on_pre_cmd
--- Auto-Commands ---
filetypeplugin  FileType
    *         call s:LoadFTPlugin()
	Last set from /usr/share/vim/vim80/ftplugin.vim
dein  FileType
    *?        call dein#autoload#_on_default_event('FileType')
	Last set from ~/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein.vim
filetypeindent  FileType
    *         call s:LoadIndent()
	Last set from /usr/share/vim/vim80/indent.vim
syntaxset  FileType
    *         exe "set syntax=" . expand("<amatch>")
	Last set from /usr/share/vim/vim80/syntax/syntax.vim
chdir(/cygdrive/c/Users/andre/.config/nvim/config/plugins)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.config/nvim/config/plugins/vimwiki.vim"
finished sourcing /cygdrive/c/Users/andre/.config/nvim/config/plugins/vimwiki.vim
continuing in function dein#autoload#_on_pre_cmd[1]..dein#autoload#_source[27]..dein#call_hook[1]..dein#util#_call_hook[9]..dein#util#_execute_hook[5]..<SNR>30_execute[9].._dein_dummy_1513430159_315817
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/plugin)
fchdir() to previous dir
line 34: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/plugin/vimwiki.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/plugin/vimwiki.vim
continuing in function dein#autoload#_on_pre_cmd[1]..dein#autoload#_source
                                                                          No matching autocommands
--- Auto-Commands ---
filetypeplugin  FileType
    *         call s:LoadFTPlugin()
	Last set from /usr/share/vim/vim80/ftplugin.vim
dein  FileType
    *?        call dein#autoload#_on_default_event('FileType')
	Last set from ~/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/dein.vim
filetypeindent  FileType
    *         call s:LoadIndent()
	Last set from /usr/share/vim/vim80/indent.vim
syntaxset  FileType
    *         exe "set syntax=" . expand("<amatch>")
	Last set from /usr/share/vim/vim80/syntax/syntax.vim
Searching for "autoload/vimwiki/base.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/base.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/base.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/base.vim"
Searching for "autoload/vimwiki/markdown_base.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/markdown_base.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 2067: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim"
Searching for "autoload/vimwiki/markdown_base.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/markdown_base.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 17: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/markdown_base.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/base.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/autoload/vimwiki/markdown_base.vim"
Searching for "/usr/share/vim/vim80/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/autoload/vimwiki/markdown_base.vim"
Searching for "/usr/share/vim/vimfiles/after/autoload/vimwiki/markdown_base.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/autoload/vimwiki/markdown_base.vim"
Searching for "autoload/vimwiki/default_base.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/default_base.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/default_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/default_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/default_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/autoload/vimwiki/default_base.vim"
Searching for "/usr/share/vim/vim80/autoload/vimwiki/default_base.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/autoload/vimwiki/default_base.vim"
Searching for "/usr/share/vim/vimfiles/after/autoload/vimwiki/default_base.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/autoload/vimwiki/default_base.vim"
not found in 'runtimepath': "autoload/vimwiki/default_base.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/base.vim
Executing FuncUndefined Auto commands for "*"
autocommand call dein#autoload#_on_func(expand('<afile>'))

Searching for "autoload/vimwiki/path.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/path.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/path.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/path.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/path.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 12: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/path.vim"
Searching for "autoload/vimwiki/u.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/u.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/u.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/u.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/u.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 13: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/u.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/u.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/path.vim
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/path.vim
continuing in function vimwiki#base#goto_index[27]..vimwiki#base#edit_file
chdir(/cygdrive/c/Users/andre/Dropbox/wiki)
fchdir() to previous dir
chdir(/cygdrive/c/Users/andre/Dropbox/wiki)
fchdir() to previous dir
Executing BufNew Auto commands for "*?"
autocommand call dein#autoload#_on_default_event('BufNew')

"~/Dropbox/wiki/index.md" 
"~/Dropbox/wiki/index.md" 13L, 110C
Reading viminfo file "/cygdrive/c/Users/andre/.viminfo" marks
Executing BufRead Auto commands for "*"
autocommand if line("'\"") > 0 && line ("'\"") <= line("$") |   exe "normal! g'\"" | endif

Executing BufRead Auto commands for "*?"
autocommand call dein#autoload#_on_default_event('BufRead')

Executing BufRead Auto commands for "*.md"
autocommand setf markdown

Executing FileType Auto commands for "*"
autocommand call s:LoadFTPlugin()

Searching for "ftplugin/markdown.vim ftplugin/markdown_*.vim ftplugin/markdown/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/markdown/*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/markdown.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/markdown_*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/markdown/*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/markdown.vim"
chdir(/usr/share/vim/vim80/ftplugin)
fchdir() to previous dir
line 17: sourcing "/usr/share/vim/vim80/ftplugin/markdown.vim"
Searching for "ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/html/*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/html.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/html_*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/html/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/html/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/html/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/html/*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/html.vim"
chdir(/usr/share/vim/vim80/ftplugin)
fchdir() to previous dir
line 10: sourcing "/usr/share/vim/vim80/ftplugin/html.vim"
Searching for "autoload/htmlcomplete.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/htmlcomplete.vim"
Searching for "/usr/share/vim/vimfiles/autoload/htmlcomplete.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/htmlcomplete.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/htmlcomplete.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/autoload/htmlcomplete.vim"
Searching for "/usr/share/vim/vim80/autoload/htmlcomplete.vim"
chdir(/usr/share/vim/vim80/autoload)
fchdir() to previous dir
line 25: sourcing "/usr/share/vim/vim80/autoload/htmlcomplete.vim"
finished sourcing /usr/share/vim/vim80/autoload/htmlcomplete.vim
continuing in /usr/share/vim/vim80/ftplugin/html.vim
finished sourcing /usr/share/vim/vim80/ftplugin/html.vim
continuing in /usr/share/vim/vim80/ftplugin/markdown.vim
Searching for "/usr/share/vim/vim80/ftplugin/html_*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/html/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/html/*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/html.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/html_*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/html/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/html.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/html_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/html/*.vim"
finished sourcing /usr/share/vim/vim80/ftplugin/markdown.vim
continuing in function <SNR>6_LoadFTPlugin
Searching for "/usr/share/vim/vim80/ftplugin/markdown_*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/markdown/*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/markdown.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/markdown_*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/markdown_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/markdown/*.vim"
Executing FileType Auto commands for "*?"
autocommand call dein#autoload#_on_default_event('FileType')

Executing FileType Auto commands for "*"
autocommand call s:LoadIndent()

Searching for "indent/markdown.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/indent/markdown.vim"
Searching for "/usr/share/vim/vimfiles/indent/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/indent/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/indent/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/indent/markdown.vim"
Searching for "/usr/share/vim/vim80/indent/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/indent/markdown.vim"
Searching for "/usr/share/vim/vimfiles/after/indent/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/indent/markdown.vim"
not found in 'runtimepath': "indent/markdown.vim"
Executing FileType Auto commands for "*"
autocommand exe "set syntax=" . expand("<amatch>")

Executing Syntax Auto commands for "*"
autocommand call s:SynSet()

Searching for "syntax/markdown.vim syntax/markdown/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/markdown/*.vim"
Searching for "/usr/share/vim/vimfiles/syntax/markdown.vim"
Searching for "/usr/share/vim/vimfiles/syntax/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/markdown/*.vim"
Searching for "/usr/share/vim/vim80/syntax/markdown.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 24: sourcing "/usr/share/vim/vim80/syntax/markdown.vim"
Searching for "syntax/html.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/html.vim"
Searching for "/usr/share/vim/vimfiles/syntax/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/html.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/html.vim"
Searching for "/usr/share/vim/vim80/syntax/html.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 15: sourcing "/usr/share/vim/vim80/syntax/html.vim"
Searching for "syntax/javascript.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/javascript.vim"
Searching for "/usr/share/vim/vimfiles/syntax/javascript.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/javascript.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/javascript.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/javascript.vim"
Searching for "/usr/share/vim/vim80/syntax/javascript.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 186: sourcing "/usr/share/vim/vim80/syntax/javascript.vim"
finished sourcing /usr/share/vim/vim80/syntax/javascript.vim
continuing in /usr/share/vim/vim80/syntax/html.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/javascript.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/javascript.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/javascript.vim"
Searching for "syntax/vb.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vb.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vb.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vb.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vb.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vb.vim"
Searching for "/usr/share/vim/vim80/syntax/vb.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 211: sourcing "/usr/share/vim/vim80/syntax/vb.vim"
finished sourcing /usr/share/vim/vim80/syntax/vb.vim
continuing in /usr/share/vim/vim80/syntax/html.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vb.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vb.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vb.vim"
Searching for "syntax/css.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/css.vim"
Searching for "/usr/share/vim/vimfiles/syntax/css.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/css.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/css.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/css.vim"
Searching for "/usr/share/vim/vim80/syntax/css.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 221: sourcing "/usr/share/vim/vim80/syntax/css.vim"
finished sourcing /usr/share/vim/vim80/syntax/css.vim
continuing in /usr/share/vim/vim80/syntax/html.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/css.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/css.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/css.vim"
finished sourcing /usr/share/vim/vim80/syntax/html.vim
continuing in /usr/share/vim/vim80/syntax/markdown.vim
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/html.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/html.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/html.vim"
finished sourcing /usr/share/vim/vim80/syntax/markdown.vim
continuing in function <SNR>3_SynSet
Searching for "/usr/share/vim/vim80/syntax/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/markdown/*.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/markdown.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/markdown/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/markdown/*.vim"
Executing BufRead Auto commands for "*"
autocommand if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat | runtime! scripts.vim | endif

Executing BufRead Auto commands for "*"
autocommand if !did_filetype() && expand("<amatch>") !~ g:ft_ignore_pat    && (getline(1) =~ '^#' || getline(2) =~ '^#' || getline(3) =~ '^#'^I|| getline(4) =~ '^#' || getline(5) =~ '^#') |   setf FALLBACK conf | endif

Executing BufRead Auto commands for "*.md"
autocommand call s:setup_filetype()

Executing FileType Auto commands for "*"
autocommand call s:LoadFTPlugin()

Searching for "ftplugin/vimwiki.vim ftplugin/vimwiki_*.vim ftplugin/vimwiki/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/ftplugin/vimwiki/*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/vimwiki_*.vim"
Searching for "/usr/share/vim/vimfiles/ftplugin/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/ftplugin/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin)
fchdir() to previous dir
line 17: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki.vim"
Searching for "syntax/vimwiki_markdown.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim"
Searching for "autoload/vimwiki/lst.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/lst.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/lst.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/lst.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/lst.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 76: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/lst.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/lst.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim
continuing in function vimwiki#u#reload_regexes
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vim80/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vimwiki_markdown.vim"
Searching for "syntax/omnipresent_syntax.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/omnipresent_syntax.vim"
Searching for "/usr/share/vim/vimfiles/syntax/omnipresent_syntax.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/omnipresent_syntax.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/omnipresent_syntax.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/omnipresent_syntax.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/omnipresent_syntax.vim
continuing in function vimwiki#u#reload_omni_regexes
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/omnipresent_syntax.vim"
Searching for "/usr/share/vim/vim80/syntax/omnipresent_syntax.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/omnipresent_syntax.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/omnipresent_syntax.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/omnipresent_syntax.vim"
Searching for "autoload/vimwiki/tags.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/autoload/vimwiki/tags.vim"
Searching for "/usr/share/vim/vimfiles/autoload/vimwiki/tags.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/autoload/vimwiki/tags.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/tags.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki)
fchdir() to previous dir
line 34: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/tags.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/autoload/vimwiki/tags.vim
continuing in /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki.vim
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki.vim
continuing in function <SNR>6_LoadFTPlugin
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/ftplugin/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/ftplugin/vimwiki/*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/vimwiki.vim"
Searching for "/usr/share/vim/vim80/ftplugin/vimwiki_*.vim"
Searching for "/usr/share/vim/vim80/ftplugin/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/ftplugin/vimwiki/*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/vimwiki_*.vim"
Searching for "/usr/share/vim/vimfiles/after/ftplugin/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/vimwiki_*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/ftplugin/vimwiki/*.vim"
Executing FileType Auto commands for "*?"
autocommand call dein#autoload#_on_default_event('FileType')

Executing FileType Auto commands for "*"
autocommand call s:LoadIndent()

Searching for "indent/vimwiki.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/indent/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/indent/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/indent/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/indent/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/indent/vimwiki.vim"
Searching for "/usr/share/vim/vim80/indent/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/indent/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/after/indent/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/indent/vimwiki.vim"
not found in 'runtimepath': "indent/vimwiki.vim"
Executing FileType Auto commands for "*"
autocommand exe "set syntax=" . expand("<amatch>")

Executing Syntax Auto commands for "*"
autocommand call s:SynSet()

Searching for "syntax/vimwiki.vim syntax/vimwiki/*.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vimwiki/*.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax)
fchdir() to previous dir
line 24: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki.vim"
Searching for "syntax/vimwiki_markdown.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown.vim
continuing in function vimwiki#u#reload_regexes
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vim80/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vimwiki_markdown.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vimwiki_markdown.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vimwiki_markdown.vim"
Searching for "syntax/vimwiki_markdown_custom.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/vimwiki_markdown_custom.vim"
Searching for "/usr/share/vim/vimfiles/syntax/vimwiki_markdown_custom.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/vimwiki_markdown_custom.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown_custom.vim"
chdir(/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax)
fchdir() to previous dir
line 1: sourcing "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown_custom.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki_markdown_custom.vim
continuing in function vimwiki#u#reload_regexes_custom
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vimwiki_markdown_custom.vim"
Searching for "/usr/share/vim/vim80/syntax/vimwiki_markdown_custom.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vimwiki_markdown_custom.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vimwiki_markdown_custom.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vimwiki_markdown_custom.vim"
Searching for "syntax/tex.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/syntax/tex.vim"
Searching for "/usr/share/vim/vimfiles/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/tex.vim"
Searching for "/usr/share/vim/vim80/syntax/tex.vim"
chdir(/usr/share/vim/vim80/syntax)
fchdir() to previous dir
line 18: sourcing "/usr/share/vim/vim80/syntax/tex.vim"
finished sourcing /usr/share/vim/vim80/syntax/tex.vim
continuing in function vimwiki#base#nested_syntax
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/tex.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/tex.vim"
Searching for "after/syntax/tex.vim" in "/cygdrive/c/Users/andre/.vim,/usr/share/vim/vimfiles,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim,/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein,/usr/share/vim/vim80,/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after,/usr/share/vim/vimfiles/after,/cygdrive/c/Users/andre/.vim/after"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/tex.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/Shougo/dein.vim/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/tex.vim"
Searching for "/usr/share/vim/vim80/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/after/syntax/tex.vim"
Searching for "/usr/share/vim/vimfiles/after/after/syntax/tex.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/after/syntax/tex.vim"
not found in 'runtimepath': "after/syntax/tex.vim"
finished sourcing /cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki.vim
continuing in function <SNR>3_SynSet
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/repos/github.com/vimwiki/vimwiki/syntax/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/syntax/vimwiki/*.vim"
Searching for "/usr/share/vim/vim80/syntax/vimwiki.vim"
Searching for "/usr/share/vim/vim80/syntax/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.cache/vim/dein/.cache/vimrc/.dein/after/syntax/vimwiki/*.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vimwiki.vim"
Searching for "/usr/share/vim/vimfiles/after/syntax/vimwiki/*.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vimwiki.vim"
Searching for "/cygdrive/c/Users/andre/.vim/after/syntax/vimwiki/*.vim"
Executing BufEnter Auto commands for "*.md"
autocommand call s:setup_buffer_reenter()

Executing BufWinEnter Auto commands for "*.md"
autocommand call s:setup_buffer_enter()


Writing viminfo file "/cygdrive/c/Users/andre/.viminfo"

I see similar behaviour with neovim on Windows subsystem for linux Ubuntu.

Do you ever see this behaviour with vim8/neovim?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.