new: Added wrapping plugin
This commit is contained in:
parent
f8cbef6912
commit
81db3b5679
3 changed files with 5 additions and 1 deletions
|
@ -6,7 +6,7 @@ local fn = vim.fn
|
|||
-- Turn on numbers
|
||||
set.number = true
|
||||
-- Turn off line wrapping
|
||||
set.wrap = false
|
||||
-- set.wrap = false
|
||||
-- Disable cmdline from bottom
|
||||
set.cmdheight = 0
|
||||
-- Ignore case while searching except when the search term contains capital letters
|
||||
|
|
|
@ -69,6 +69,7 @@ require("lazy").setup(
|
|||
"ibhagwan/fzf-lua",
|
||||
"karb94/neoscroll.nvim",
|
||||
"hiphish/rainbow-delimiters.nvim",
|
||||
"andrewferrier/wrapping.nvim",
|
||||
"fei6409/log-highlight.nvim",
|
||||
{
|
||||
"linrongbin16/lsp-progress.nvim",
|
||||
|
|
|
@ -12,3 +12,6 @@ require("log-highlight").setup()
|
|||
|
||||
-- Load UltiSnips snippets from custom-snippets directory
|
||||
vim.g.UltiSnipsSnippetDirectories = { "my-snippets", "UltiSnips" }
|
||||
|
||||
-- Default settings for wrapping
|
||||
require("wrapping").setup()
|
||||
|
|
Loading…
Reference in a new issue