plugins.lua 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. -- workaround from https://github.com/echasnovski/mini.nvim/issues/306#issuecomment-1517954136
  83. process_items = function(items, base)
  84. -- Remove dots as prefix from `textEdit.newText` as it is used verbatim
  85. for _, item in ipairs(items) do
  86. local new_text = (item.textEdit or {}).newText
  87. if type(new_text) == 'string' then
  88. item.textEdit.newText = new_text:gsub('^%.+', '')
  89. end
  90. end
  91. return MiniCompletion.default_process_items(items, base)
  92. end,
  93. },
  94. });
  95. local spec_treesitter = require('mini.ai').gen_spec.treesitter
  96. require('mini.ai').setup({
  97. custom_textobjects = {
  98. [','] = spec_treesitter({
  99. a = '@parameter.outer',
  100. i = '@parameter.inner',
  101. }),
  102. },
  103. });
  104. -- align actions
  105. require('mini.align').setup()
  106. -- rest client
  107. require('rest-nvim').setup({})
  108. -- Use Treesitter for syntax highlighting
  109. require('nvim-treesitter.configs').setup({
  110. highlight = {
  111. enable = true,
  112. },
  113. textobjects = {
  114. swap = {
  115. enable = true,
  116. swap_next = {
  117. ['>,'] = '@parameter.inner',
  118. },
  119. swap_previous = {
  120. ['<,'] = '@parameter.inner',
  121. },
  122. },
  123. },
  124. })
  125. local tsj_utils = require('treesj.langs.utils')
  126. -- Treesitter-aware split/join
  127. require('treesj').setup({
  128. use_default_keymaps = false,
  129. langs = {
  130. nix = {
  131. list_expression = tsj_utils.set_preset_for_list({
  132. both = {
  133. separator = '',
  134. },
  135. }),
  136. binding_set = tsj_utils.set_preset_for_non_bracket(),
  137. let_expression = {
  138. target_nodes = { 'binding_set' },
  139. },
  140. attrset_expression = {
  141. target_nodes = { 'binding_set' },
  142. },
  143. -- this is a bit janky with the indentation
  144. inherited_attrs = tsj_utils.set_preset_for_non_bracket(),
  145. inherit = {
  146. target_nodes = { 'inherited_attrs' },
  147. },
  148. },
  149. },
  150. })
  151. -- typescript-vim compiler options
  152. vim.g.typescript_compiler_options = '--incremental --noEmit'