File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -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`
@@ -102,18 +102,13 @@ vim.g.have_nerd_font = false
102102vim .opt .number = true
103103-- You can also add relative line numbers, to help with jumping.
104104-- Experiment for yourself to see if you like it!
105- -- vim.opt.relativenumber = true
105+ vim .opt .relativenumber = true
106106
107107-- Enable mouse mode, can be useful for resizing splits for example!
108108vim .opt .mouse = ' a'
109109
110110-- Don't show the mode, since it's already in the status line
111- vim .opt .showmode = false
112-
113- -- Sync clipboard between OS and Neovim.
114- -- Remove this option if you want your OS clipboard to remain independent.
115- -- See `:help 'clipboard'`
116- vim .opt .clipboard = ' unnamedplus'
111+ vim .opt .showmode = true
117112
118113-- Enable break indent
119114vim .opt .breakindent = true
You can’t perform that action at this time.
0 commit comments