this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] remove 'change to bash' comments | add firacode guifont

+1 -9
+1 -9
nvim/lua/core/options.lua
··· 1 - -- Change fish to bash 2 - -- check this issue: https://github.com/kyazdani42/nvim-tree.lua/issues/549 3 - --[[ local fish = "fish" 4 - if vim.o.shell:sub(- #fish) == fish then 5 - vim.opt.shell = "/bin/bash" 6 - end ]] 7 - -- commented to use toggleterm 8 - 9 1 local options = { 10 2 backup = false, -- creates a backup file 11 3 clipboard = "unnamedplus", -- allows neovim to access the system clipboard ··· 41 33 wrap = false, -- display lines as one long line 42 34 scrolloff = 8, -- is one of my fav 43 35 sidescrolloff = 8, 44 - -- guifont = "monospace:h17", -- the font used in graphical neovim applications 36 + guifont = "FiraCode Nerd Font:h16", -- the font used in graphical neovim applications 45 37 whichwrap = "<,>,[,]", 46 38 } 47 39