plugins.lua 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. preview = {
  16. -- don't preview files larger than 1MB
  17. filesize_limit = 1,
  18. timeout = 500,
  19. },
  20. -- ignore things we're likely not to edit
  21. file_ignore_patterns = {
  22. "%.zip$",
  23. "%.yarn/releases/",
  24. "%.yarn/plugins/"
  25. },
  26. },
  27. pickers = {
  28. buffers = {
  29. sort_lastused = true,
  30. sort_mru = true,
  31. mappings = {
  32. i = {
  33. ['<C-k>'] = 'delete_buffer'
  34. },
  35. },
  36. },
  37. find_files = {
  38. find_command = { "fd", "--type", "f", "--strip-cwd-prefix" }
  39. },
  40. },
  41. })
  42. -- use native sorter for better performance
  43. require('telescope').load_extension('fzf')
  44. -- custom picker to fallback to files if no git
  45. local telescope_builtin = require('telescope.builtin')
  46. _G.project_files = function()
  47. local ok = pcall(telescope_builtin.git_files, { show_untracked = true })
  48. if not ok then telescope_builtin.find_files({}) end
  49. end
  50. -- shows added/removed/changed lines
  51. require('gitsigns').setup()
  52. require('mini.statusline').setup({
  53. content = {
  54. -- copy-pasted from default, we just want to remove the icon
  55. active = function()
  56. local mode, mode_hl = MiniStatusline.section_mode({ trunc_width = 120 })
  57. local git = MiniStatusline.section_git({ trunc_width = 75, icon = '' })
  58. local diagnostics = MiniStatusline.section_diagnostics({ trunc_width = 75, icon = '' })
  59. local filename = MiniStatusline.section_filename({ trunc_width = 140 })
  60. local fileinfo = MiniStatusline.section_fileinfo({ trunc_width = 120 })
  61. local location = MiniStatusline.section_location({ trunc_width = 75 })
  62. return MiniStatusline.combine_groups({
  63. { hl = mode_hl, strings = { mode } },
  64. { hl = 'MiniStatuslineDevinfo', strings = { git, diagnostics } },
  65. '%<', -- Mark general truncate point
  66. { hl = 'MiniStatuslineFilename', strings = { filename } },
  67. '%=', -- End left alignment
  68. { hl = 'MiniStatuslineFileinfo', strings = { fileinfo } },
  69. { hl = mode_hl, strings = { location } },
  70. })
  71. end
  72. },
  73. })
  74. -- delete buffer while preserving layout
  75. require('mini.bufremove').setup()
  76. -- shows a line indicating the current indentation scope
  77. require('mini.indentscope').setup()
  78. -- comment actions
  79. require('mini.comment').setup()
  80. -- surround actions
  81. require('mini.surround').setup()
  82. -- LSP completion and function signature display
  83. require('mini.completion').setup({
  84. delay = {
  85. -- disable autocomplete
  86. completion = 100000000,
  87. info = 100,
  88. signature = 50,
  89. },
  90. lsp_completion = {
  91. source_func = 'omnifunc',
  92. auto_setup = false,
  93. -- workaround from https://github.com/echasnovski/mini.nvim/issues/306#issuecomment-1517954136
  94. process_items = function(items, base)
  95. -- Remove dots as prefix from `textEdit.newText` as it is used verbatim
  96. for _, item in ipairs(items) do
  97. local new_text = (item.textEdit or {}).newText
  98. if type(new_text) == 'string' then
  99. item.textEdit.newText = new_text:gsub('^%.+', '')
  100. end
  101. end
  102. return MiniCompletion.default_process_items(items, base)
  103. end,
  104. },
  105. });
  106. local spec_treesitter = require('mini.ai').gen_spec.treesitter
  107. require('mini.ai').setup({
  108. custom_textobjects = {
  109. [','] = spec_treesitter({
  110. a = '@parameter.outer',
  111. i = '@parameter.inner',
  112. }),
  113. },
  114. });
  115. -- align actions
  116. require('mini.align').setup()
  117. -- repeatable f/t
  118. require('mini.jump').setup({
  119. mappings = {
  120. repeat_jump = '',
  121. },
  122. delay = {
  123. highlight = 10000000,
  124. },
  125. })
  126. -- rest client
  127. require('rest-nvim').setup({})
  128. -- Use Treesitter for syntax highlighting
  129. require('nvim-treesitter.configs').setup({
  130. highlight = {
  131. enable = true,
  132. },
  133. incremental_selection = {
  134. enable = true,
  135. keymaps = {
  136. init_selection = "]t",
  137. node_incremental = "]t",
  138. node_decremental = "[t",
  139. },
  140. },
  141. textobjects = {
  142. swap = {
  143. enable = true,
  144. swap_next = {
  145. ['>,'] = '@parameter.inner',
  146. },
  147. swap_previous = {
  148. ['<,'] = '@parameter.inner',
  149. },
  150. },
  151. },
  152. })
  153. local tsj_utils = require('treesj.langs.utils')
  154. -- Treesitter-aware split/join
  155. require('treesj').setup({
  156. use_default_keymaps = false,
  157. langs = {
  158. nix = {
  159. list_expression = tsj_utils.set_preset_for_list({
  160. both = {
  161. separator = '',
  162. },
  163. }),
  164. binding_set = tsj_utils.set_preset_for_non_bracket(),
  165. let_expression = {
  166. target_nodes = { 'binding_set' },
  167. },
  168. attrset_expression = {
  169. target_nodes = { 'binding_set' },
  170. },
  171. -- this is a bit janky with the indentation
  172. inherited_attrs = tsj_utils.set_preset_for_non_bracket(),
  173. inherit = {
  174. target_nodes = { 'inherited_attrs' },
  175. },
  176. },
  177. },
  178. })
  179. -- typescript-vim compiler options
  180. vim.g.typescript_compiler_options = '--incremental --noEmit'