-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
442 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ brew 'bat' | |
brew 'bison' | ||
brew 'cloc' | ||
brew 'exa' | ||
brew 'fd' | ||
brew 'fzf' | ||
brew 'gh' | ||
brew 'git' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
-- bootstrap lazy.nvim, LazyVim and your plugins | ||
require("config.lazy") | ||
if vim.loader then | ||
vim.loader.enable() | ||
end | ||
|
||
_G.dd = function(...) | ||
require('util.debug').dump(...) | ||
end | ||
vim.print = _G.dd | ||
|
||
require('config.lazy') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
|
||
], | ||
"news": { | ||
"NEWS.md": "2123" | ||
"NEWS.md": "2123", | ||
"doc/news.txt": "13995" | ||
}, | ||
"version": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
-- Autocmds are automatically loaded on the VeryLazy event | ||
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua | ||
-- Add any additional autocmds here | ||
|
||
-- Turn off paste mode when leaving insert | ||
vim.api.nvim_create_autocmd('InsertLeave', { | ||
pattern = '*', | ||
command = 'set nopaste', | ||
}) | ||
|
||
-- Disable the concealing in some file formats | ||
-- The default conceallevel is 3 in LazyVim | ||
vim.api.nvim_create_autocmd('FileType', { | ||
pattern = { 'json', 'jsonc', 'markdown' }, | ||
callback = function() | ||
vim.opt.conceallevel = 0 | ||
end, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
return { | ||
{ 'bluz71/vim-nightfly-guicolors' }, | ||
{ | ||
'bluz71/vim-nightfly-guicolors', | ||
name = 'nightfly', | ||
lazy = true, | ||
priority = 1000, | ||
}, | ||
{ 'norcalli/nvim-colorizer.lua', config = true }, | ||
} |
Oops, something went wrong.