plugins.lua 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. -- file/buffer/etc picker
  2. require('telescope').setup({
  3. defaults = {
  4. mappings = {
  5. i = {
  6. ['jj'] = 'close',
  7. },
  8. },
  9. layout_config = {
  10. prompt_position = 'top',
  11. },
  12. sorting_strategy = 'ascending',
  13. -- use filename as preview window title
  14. dynamic_preview_title = true,
  15. },
  16. pickers = {
  17. buffers = {
  18. sort_lastused = true,
  19. sort_mru = true,
  20. mappings = {
  21. i = {
  22. ['<C-k>'] = 'delete_buffer'
  23. },
  24. },
  25. },
  26. find_files = {
  27. find_command = { "fd", "--type", "f", "--strip-cwd-prefix" }
  28. },
  29. },
  30. })
  31. -- use native sorter for better performance
  32. require('telescope').load_extension('fzf')
  33. -- custom picker to fallback to files if no git
  34. local telescope_builtin = require('telescope.builtin')
  35. _G.project_files = function()
  36. local ok = pcall(telescope_builtin.git_files, { show_untracked = true })
  37. if not ok then telescope_builtin.find_files({}) end
  38. end
  39. -- shows added/removed/changed lines
  40. require('gitsigns').setup()
  41. require('mini.statusline').setup({
  42. content = {
  43. -- copy-pasted from default, we just want to remove the icon
  44. active = function()
  45. local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
  46. local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
  47. local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
  48. local filename = MiniStatusline.section_filename({ trunc_width = 140 })
  49. local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
  50. local location = MiniStatusline.section_location({ trunc_width = 75 })
  51. return MiniStatusline.combine_groups({
  52. { hl = mode_hl, strings = { mode } },
  53. { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
  54. '%<', -- Mark general truncate point
  55. { hl = 'MiniStatuslineFilename', strings = { filename } },
  56. '%=', -- End left alignment
  57. { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
  58. { hl = mode_hl, strings = { location } },
  59. })
  60. end
  61. },
  62. })
  63. -- delete buffer while preserving layout
  64. require('mini.bufremove').setup()
  65. -- shows a line indicating the current indentation scope
  66. require('mini.indentscope').setup()
  67. -- comment actions
  68. require('mini.comment').setup()
  69. -- surround actions
  70. require('mini.surround').setup()
  71. -- LSP completion and function signature display
  72. require('mini.completion').setup({
  73. delay = {
  74. -- disable autocomplete
  75. completion = 100000000,
  76. info = 100,
  77. signature = 50,
  78. },
  79. lsp_completion = {
  80. source_func = 'omnifunc',
  81. auto_setup = false,
  82. },
  83. });
  84. -- Use Treesitter for syntax highlighting
  85. require('nvim-treesitter.configs').setup({
  86. highlight = {
  87. enable = true,
  88. },
  89. textobjects = {
  90. select = {
  91. enable = true,
  92. keymaps = {
  93. ['i,'] = '@parameter.inner',
  94. ['a,'] = '@parameter.outer',
  95. },
  96. },
  97. swap = {
  98. enable = true,
  99. swap_next = {
  100. ['>,'] = '@parameter.inner',
  101. },
  102. swap_previous = {
  103. ['<,'] = '@parameter.inner',
  104. },
  105. },
  106. },
  107. })
  108. local tsj_utils = require('treesj.langs.utils')
  109. -- Treesitter-aware split/join
  110. require('treesj').setup({
  111. use_default_keymaps = false,
  112. langs = {
  113. nix = {
  114. list_expression = tsj_utils.set_preset_for_list({
  115. both = {
  116. separator = '',
  117. },
  118. }),
  119. binding_set = tsj_utils.set_preset_for_non_bracket(),
  120. let_expression = {
  121. target_nodes = { 'binding_set' },
  122. },
  123. attrset_expression = {
  124. target_nodes = { 'binding_set' },
  125. },
  126. -- this is a bit janky with the indentation
  127. inherited_attrs = tsj_utils.set_preset_for_non_bracket(),
  128. inherit = {
  129. target_nodes = { 'inherited_attrs' },
  130. },
  131. },
  132. },
  133. })
  134. -- typescript-vim compiler options
  135. vim.g.typescript_compiler_binary = 'node_modules/.bin/tsc'
  136. vim.g.typescript_compiler_options = '--incremental --noEmit'