plugins.lua 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. local spec_treesitter = require('mini.ai').gen_spec.treesitter
  83. require('mini.ai').setup({
  84. custom_textobjects = {
  85. [','] = spec_treesitter({
  86. a = '@parameter.outer',
  87. i = '@parameter.inner',
  88. }),
  89. },
  90. });
  91. -- align actions
  92. require('mini.align').setup()
  93. -- repeatable f/t
  94. require('mini.jump').setup({
  95. mappings = {
  96. repeat_jump = '',
  97. },
  98. delay = {
  99. highlight = 10000000,
  100. },
  101. })
  102. -- rest client
  103. require('rest-nvim').setup({})
  104. -- Use Treesitter for syntax highlighting
  105. require('nvim-treesitter.configs').setup({
  106. highlight = {
  107. enable = true,
  108. },
  109. incremental_selection = {
  110. enable = true,
  111. keymaps = {
  112. init_selection = "]t",
  113. node_incremental = "]t",
  114. node_decremental = "[t",
  115. },
  116. },
  117. textobjects = {
  118. swap = {
  119. enable = true,
  120. swap_next = {
  121. ['>,'] = '@parameter.inner',
  122. },
  123. swap_previous = {
  124. ['<,'] = '@parameter.inner',
  125. },
  126. },
  127. },
  128. })
  129. local tsj_utils = require('treesj.langs.utils')
  130. -- Treesitter-aware split/join
  131. require('treesj').setup({
  132. use_default_keymaps = false,
  133. langs = {
  134. nix = {
  135. list_expression = tsj_utils.set_preset_for_list({
  136. both = {
  137. separator = '',
  138. },
  139. }),
  140. binding_set = tsj_utils.set_preset_for_non_bracket(),
  141. let_expression = {
  142. target_nodes = { 'binding_set' },
  143. },
  144. attrset_expression = {
  145. target_nodes = { 'binding_set' },
  146. },
  147. -- this is a bit janky with the indentation
  148. inherited_attrs = tsj_utils.set_preset_for_non_bracket(),
  149. inherit = {
  150. target_nodes = { 'inherited_attrs' },
  151. },
  152. },
  153. },
  154. })
  155. -- completion
  156. local cmp = require('cmp')
  157. cmp.setup({
  158. snippet = {
  159. expand = function(args)
  160. vim.fn['vsnip#anonymous'](args.body)
  161. end,
  162. },
  163. mapping = cmp.mapping.preset.insert({
  164. ['<C-b>'] = cmp.mapping.scroll_docs(-4),
  165. ['<C-f>'] = cmp.mapping.scroll_docs(4),
  166. ['<C-Space>'] = cmp.mapping.complete(),
  167. ['<C-e>'] = cmp.mapping.abort(),
  168. ['<CR>'] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
  169. }),
  170. sources = cmp.config.sources({
  171. { name = "nvim_lsp" },
  172. { name = "vsnip" },
  173. }),
  174. completion = {
  175. autocomplete = false,
  176. },
  177. })
  178. -- typescript-vim compiler options
  179. vim.g.typescript_compiler_options = '--incremental --noEmit'