Skip to content

Commit

Permalink
nerd font + lightbulb
Browse files Browse the repository at this point in the history
  • Loading branch information
philosofonusus committed Dec 14, 2024
1 parent abd3771 commit c06e601
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
vim.opt.signcolumn = 'yes'

require 'config.options'
require 'config.lazy'
require 'config.mappings'
Expand Down
5 changes: 4 additions & 1 deletion lua/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '

vim.g.have_nerd_font = true

-- Make line numbers default
vim.opt.number = true
-- You can also add relative line numbers, to help with jumping.
Expand Down Expand Up @@ -30,7 +32,8 @@ vim.opt.ignorecase = true
vim.opt.smartcase = true

-- Keep signcolumn on by default to prevent jumps of buffer
vim.opt.signcolumn = 'yes'
vim.opt.statuscolumn = ' '
vim.wo.signcolumn = 'yes'

-- Decrease update time
vim.opt.updatetime = 250
Expand Down

0 comments on commit c06e601

Please sign in to comment.