fixup: updated some style stuff
This commit is contained in:
		
							parent
							
								
									465d6f25c2
								
							
						
					
					
						commit
						b58666dd15
					
				
							
								
								
									
										23
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										23
									
								
								init.lua
								
								
								
								
							|  | @ -219,9 +219,6 @@ vim.opt.rtp:prepend(lazypath) | ||||||
| -- | -- | ||||||
| -- NOTE: Here is where you install your plugins. | -- NOTE: Here is where you install your plugins. | ||||||
| require('lazy').setup { | require('lazy').setup { | ||||||
| 
 |  | ||||||
|   -- [[ Plugin Specs list ]] |  | ||||||
| 
 |  | ||||||
|   -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). |   -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). | ||||||
|   'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically |   'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically | ||||||
| 
 | 
 | ||||||
|  | @ -592,15 +589,11 @@ require('lazy').setup { | ||||||
|         handlers = { |         handlers = { | ||||||
|           function(server_name) |           function(server_name) | ||||||
|             local server = servers[server_name] or {} |             local server = servers[server_name] or {} | ||||||
|             require('lspconfig')[server_name].setup { |  | ||||||
|               cmd = server.cmd, |  | ||||||
|               settings = server.settings, |  | ||||||
|               filetypes = server.filetypes, |  | ||||||
|             -- This handles overriding only values explicitly passed |             -- This handles overriding only values explicitly passed | ||||||
|             -- by the server configuration above. Useful when disabling |             -- by the server configuration above. Useful when disabling | ||||||
|             -- certain features of an LSP (for example, turning off formatting for tsserver) |             -- certain features of an LSP (for example, turning off formatting for tsserver) | ||||||
|               capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}), |             server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) | ||||||
|             } |             require('lspconfig')[server_name].setup(server) | ||||||
|           end, |           end, | ||||||
|         }, |         }, | ||||||
|       } |       } | ||||||
|  | @ -761,9 +754,15 @@ require('lazy').setup { | ||||||
|       -- Simple and easy statusline. |       -- Simple and easy statusline. | ||||||
|       --  You could remove this setup call if you don't like it, |       --  You could remove this setup call if you don't like it, | ||||||
|       --  and try some other statusline plugin |       --  and try some other statusline plugin | ||||||
|       require('mini.statusline').setup() |       local statusline = require 'mini.statusline' | ||||||
|       MiniStatusline.section_location = function() |       statusline.setup() | ||||||
|         return '%2l:%-2v' | 
 | ||||||
|  |       -- You can confiure sections in the statusline by overriding their | ||||||
|  |       -- default behavior. For example, here we disable the section for | ||||||
|  |       -- cursor information because line numbers are already enabled | ||||||
|  |       ---@diagnostic disable-next-line: duplicate-set-field | ||||||
|  |       statusline.section_location = function() | ||||||
|  |         return '' | ||||||
|       end |       end | ||||||
| 
 | 
 | ||||||
|       -- ... and there is more! |       -- ... and there is more! | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 TJ DeVries
						TJ DeVries