dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

projects.lua (314B)


      1 -- Updates the vim path for Flutter engine development.
      2 local function update_path_for_flutter_engine()
      3   local engine_dir = vim.fn.expand('$HOME/Developer/flutter/engine/src')
      4   if vim.fn.getcwd():find(engine_dir, 1, true) == 1 then
      5     vim.opt.path:append(engine_dir)
      6   end
      7 end
      8 
      9 update_path_for_flutter_engine()