@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191vim .g .maplocalleader = ' '
9292
9393-- Set to true if you have a Nerd Font installed and selected in the terminal
94- vim .g .have_nerd_font = false
94+ vim .g .have_nerd_font = true
9595
9696-- [[ Setting options ]]
9797-- See `:help vim.opt`
@@ -134,7 +134,7 @@ vim.opt.signcolumn = 'yes'
134134-- Decrease update time
135135vim .opt .updatetime = 250
136136
137- -- Decrease mapped sequence wait time
137+ -- Decrease mapped sequence wait tim
138138-- Displays which-key popup sooner
139139vim .opt .timeoutlen = 300
140140
@@ -618,7 +618,7 @@ require('lazy').setup({
618618 -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
619619 local servers = {
620620 clangd = {},
621- -- gopls = {},
621+ gopls = {},
622622 pyright = {},
623623 -- rust_analyzer = {},
624624 -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
@@ -847,7 +847,7 @@ require('lazy').setup({
847847 -- Load the colorscheme here.
848848 -- Like many other themes, this one has different styles, and you could load
849849 -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
850- vim .cmd .colorscheme ' tokyonight-night '
850+ vim .cmd .colorscheme ' tokyonight-storm '
851851
852852 -- You can configure highlights by doing something like:
853853 vim .cmd .hi ' Comment gui=none'
@@ -933,14 +933,14 @@ require('lazy').setup({
933933 -- require 'kickstart.plugins.indent_line',
934934 -- require 'kickstart.plugins.lint',
935935 -- require 'kickstart.plugins.autopairs',
936- -- require 'kickstart.plugins.neo-tree',
937- -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
936+ require ' kickstart.plugins.neo-tree' ,
937+ require ' kickstart.plugins.gitsigns' , -- adds gitsigns recommend keymaps
938938
939939 -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
940940 -- This is the easiest way to modularize your config.
941941 --
942942 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
943- -- { import = 'custom.plugins' },
943+ { import = ' custom.plugins' },
944944 --
945945 -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
946946 -- Or use telescope!
0 commit comments