@@ -43,6 +43,7 @@ What is Kickstart?
4343
4444Kickstart Guide:
4545
46+
4647 TODO: The very first thing you should do is to run the command `:Tutor` in Neovim.
4748
4849 If you don't know what this means, type the following:
@@ -596,14 +597,14 @@ require('lazy').setup({
596597 })
597598
598599 -- Change diagnostic symbols in the sign column (gutter)
599- -- if vim.g.have_nerd_font then
600- -- local signs = { ERROR = '', WARN = '', INFO = '', HINT = '' }
601- -- local diagnostic_signs = {}
602- -- for type, icon in pairs(signs) do
603- -- diagnostic_signs[vim.diagnostic.severity[type]] = icon
604- -- end
605- -- vim.diagnostic.config { signs = { text = diagnostic_signs } }
606- -- end
600+ if vim .g .have_nerd_font then
601+ local signs = { ERROR = ' ' , WARN = ' ' , INFO = ' ' , HINT = ' ' }
602+ local diagnostic_signs = {}
603+ for type , icon in pairs (signs ) do
604+ diagnostic_signs [vim .diagnostic .severity [type ]] = icon
605+ end
606+ vim .diagnostic .config { signs = { text = diagnostic_signs } }
607+ end
607608
608609 -- LSP servers and clients are able to communicate to each other what features they support.
609610 -- By default, Neovim doesn't support everything that is in the LSP specification.
@@ -720,10 +721,10 @@ require('lazy').setup({
720721 formatters_by_ft = {
721722 lua = { ' stylua' },
722723 -- Conform can also run multiple formatters sequentially
723- -- python = { " isort", " black" },
724+ python = { ' isort' , ' black' },
724725 --
725726 -- You can use 'stop_after_first' to run the first available formatter from the list
726- -- javascript = { " prettierd", " prettier" , stop_after_first = true },
727+ javascript = { ' prettierd' , ' prettier' , stop_after_first = true },
727728 },
728729 },
729730 },
@@ -748,12 +749,12 @@ require('lazy').setup({
748749 -- `friendly-snippets` contains a variety of premade snippets.
749750 -- See the README about individual language/framework/plugin snippets:
750751 -- https://github.com/rafamadriz/friendly-snippets
751- -- {
752- -- 'rafamadriz/friendly-snippets',
753- -- config = function()
754- -- require('luasnip.loaders.from_vscode').lazy_load()
755- -- end,
756- -- },
752+ {
753+ ' rafamadriz/friendly-snippets' ,
754+ config = function ()
755+ require (' luasnip.loaders.from_vscode' ).lazy_load ()
756+ end ,
757+ },
757758 },
758759 },
759760 ' saadparwaiz1/cmp_luasnip' ,
@@ -947,16 +948,16 @@ require('lazy').setup({
947948 --
948949 -- require 'kickstart.plugins.debug',
949950 -- require 'kickstart.plugins.indent_line',
950- -- require 'kickstart.plugins.lint',
951- -- require 'kickstart.plugins.autopairs',
952- -- require 'kickstart.plugins.neo-tree',
953- -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
951+ require ' kickstart.plugins.lint' ,
952+ require ' kickstart.plugins.autopairs' ,
953+ require ' kickstart.plugins.neo-tree' ,
954+ require ' kickstart.plugins.gitsigns' , -- adds gitsigns recommend keymaps
954955
955956 -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
956957 -- This is the easiest way to modularize your config.
957958 --
958959 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
959- -- { import = 'custom.plugins' },
960+ { import = ' custom.plugins' },
960961 --
961962 -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
962963 -- Or use telescope!
0 commit comments