diff --git a/config/iterm2/com.googlecode.iterm2.plist b/config/iterm2/com.googlecode.iterm2.plist index c32abf5..3a6eb11 100644 --- a/config/iterm2/com.googlecode.iterm2.plist +++ b/config/iterm2/com.googlecode.iterm2.plist @@ -1179,7 +1179,7 @@ Non-ASCII Anti Aliased Normal Font - MesloLGS-NF-Regular 13 + MesloLGS-NF-Regular 15 Only The Default BG Color Uses Transparency Open Toolbelt diff --git a/config/nvim/after/plugin/spellsitter.rc.lua b/config/nvim/after/plugin/spellsitter.rc.lua new file mode 100644 index 0000000..dcbfe3d --- /dev/null +++ b/config/nvim/after/plugin/spellsitter.rc.lua @@ -0,0 +1,12 @@ +local status, spellsitter = pcall(require, "spellsitter") +if (not status) then return end + +spellsitter.setup({ + -- Whether enabled, can be a list of filetypes, e.g. {'python', 'lua'} + enable = true, + debug = false, + highlight = { + enable = true, + -- additional_vim_regex_highlighting = true, -- DO NOT SET THIS + } +}) diff --git a/config/nvim/lua/base.lua b/config/nvim/lua/base.lua index f6dd93f..fb0d7fc 100644 --- a/config/nvim/lua/base.lua +++ b/config/nvim/lua/base.lua @@ -28,7 +28,7 @@ vim.opt.wrap = false -- No Wrap lines vim.opt.backspace = { 'start', 'eol', 'indent' } vim.opt.path:append { '**' } -- Finding files - Search down into subfolders vim.opt.wildignore:append { '*/node_modules/*' } - +vim.opt.spell = true -- Undercurl vim.cmd([[let &t_Cs = "\e[4:3m"]]) vim.cmd([[let &t_Ce = "\e[4:0m"]]) diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 6b3acf7..415a75c 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -46,4 +46,5 @@ packer.startup(function(use) use 'lewis6991/gitsigns.nvim' use 'dinhhuy258/git.nvim' -- For git blame & browse + use 'lewis6991/spellsitter.nvim' -- For spell checking end) diff --git a/modules/oh-my-zsh b/modules/oh-my-zsh index 97134d1..8362ae2 160000 --- a/modules/oh-my-zsh +++ b/modules/oh-my-zsh @@ -1 +1 @@ -Subproject commit 97134d1eed19b72a9c4bf90a2effa847221608bf +Subproject commit 8362ae285a5c227cb20387543483a3597fa31931