You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.3 KiB

  1. local aucmd_dict = {
  2. VimEnter = {
  3. {
  4. callback = function()
  5. local function find_project_root()
  6. local current_dir = vim.fn.getcwd()
  7. while current_dir ~= "/" do
  8. if vim.fn.isdirectory(current_dir .. "/.git") == 1 or vim.fn.filereadable(current_dir .. "/.nvim.lua") then
  9. return current_dir
  10. end
  11. current_dir = vim.fn.fnamemodify(current_dir, ":h")
  12. end
  13. return vim.fn.getcwd()
  14. end
  15. local project_root = find_project_root()
  16. local project_specific_conf_file = project_root .. "/.nvim.lua"
  17. if vim.fn.filereadable(project_specific_conf_file) == 1 then
  18. vim.cmd("source " .. project_specific_conf_file)
  19. print("Sourced project specific config file: " .. project_specific_conf_file)
  20. end
  21. end
  22. }
  23. },
  24. FileType = {
  25. {
  26. -- Set tabstop to 2 for Dart, Vue, JavaScript, TypeScript, and JSON files
  27. pattern = "html,dart,vue,javascript,typescript,typescriptreact,json,markdown,css,sass",
  28. callback = function()
  29. vim.opt_local.tabstop = 2
  30. vim.opt_local.softtabstop = 2
  31. vim.opt_local.shiftwidth = 2
  32. end,
  33. },
  34. {
  35. pattern = 'dart',
  36. callback = function ()
  37. vim.bo.commentstring = '// %s'
  38. end
  39. },
  40. },
  41. BufWritePre = {
  42. {
  43. -- Remove trailing whitespace on save
  44. command = [[%s/\s\+$//e]],
  45. },
  46. },
  47. BufRead = {
  48. {
  49. -- Set syntax for Dockerfiles
  50. pattern = { '*.docker' },
  51. callback = function()
  52. vim.opt_local.syntax = 'dockerfile'
  53. end
  54. },
  55. },
  56. BufNewFile = {
  57. {
  58. -- Set syntax for Dockerfiles
  59. pattern = { '*.docker' },
  60. callback = function()
  61. vim.opt_local.syntax = 'dockerfile'
  62. end
  63. },
  64. },
  65. }
  66. for event, opt_tbls in pairs(aucmd_dict) do
  67. for _, opt_tbl in pairs(opt_tbls) do
  68. vim.api.nvim_create_autocmd(event, opt_tbl)
  69. end
  70. end