autostarting your environment

Once your code editing efficiency has gone over a certain point, then you start looking for the next thing to make your sessions better, one of the biggest hidden costs is having to setup your terminals for each different task you want to do then you can hook into this logic. What I do is I create a file of the form stuff_here_autostart.vim

  
call feedkeys(":terminal bash \\#building \", 'n')
call feedkeys("i cd ../scripts/precompiled_html_generation; source venv/bin/activate; ./continuous_build.sh \", 'n')
call feedkeys("\\", 'n')

call feedkeys(":terminal bash \\#genlink \", 'n')
call feedkeys("i cd ../scripts/openmath_cli; source venv/bin/activate; py generate_knowledge_link.py \", 'n')
call feedkeys("\\", 'n')

call feedkeys(":terminal bash \\#gendiv \", 'n')
call feedkeys("i cd ../scripts/openmath_cli; source venv/bin/activate; py generate_knowledge_div.py \", 'n')
call feedkeys("\\", 'n')
  

This file will creates terminals, by default if you run :terminal it will automatically start bash, but in our case we override this and run bash #terminal_name_here this starts a nvim terminal and also launches bash with a comment that does nothing, the reason for the comment is that the first command run will be the name of the buffer and you can use that name to fuzzy find the terminal that you need.

What we will do now is that we will assume that such an autostart file will exist in the root directory where you start nvim, and then make nvim check for this file on start and run it automatically. So you can add this to your init.lua:

  
local function source_autostart_vim()
  local root_dir = vim.fn.getcwd() -- Get the root directory where Neovim was started
  local pattern = root_dir .. '/*_autostart.vim'
  local files = vim.fn.glob(pattern, false, true) -- Find matching files

  if #files > 0 then
    vim.cmd('source ' .. files[1]) -- Source the first matching file
  end
end

vim.api.nvim_create_autocmd('VimEnter', {
  callback = source_autostart_vim,
})

  

edit this page