added a fuzzy finder to nvim and changed color scheme/line numbering
This commit is contained in:
parent
ab86f83e04
commit
d1a5282d0f
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -98,3 +98,9 @@
|
||||
[submodule "editors/nvim/site/pack/markdown/start/markdown-preview.nvim"]
|
||||
path = editors/nvim/site/pack/markdown/start/markdown-preview.nvim
|
||||
url = https://github.com/iamcco/markdown-preview.nvim.git
|
||||
[submodule "editors/nvim/site/pack/filebroswer/start/telescope.nvim"]
|
||||
path = editors/nvim/site/pack/filebroswer/start/telescope.nvim
|
||||
url = https://github.com/nvim-telescope/telescope.nvim.git
|
||||
[submodule "editors/nvim/site/pack/filebroswer/start/plenary.nvim"]
|
||||
path = editors/nvim/site/pack/filebroswer/start/plenary.nvim
|
||||
url = https://github.com/nvim-lua/plenary.nvim.git
|
||||
|
@ -288,7 +288,7 @@ exe "hi! ColorColumn" .s:fg_none .s:bg_line .s:fmt_none
|
||||
" Cursor"
|
||||
" CursorIM"
|
||||
exe "hi! CursorColumn" .s:fg_none .s:bg_line .s:fmt_none
|
||||
exe "hi! CursorLine" .s:fg_none .s:bg_line .s:fmt_none
|
||||
exe "hi! CursorLine" .s:fg_none .s:bg_none .s:fmt_none
|
||||
exe "hi! Directory" .s:fg_blue .s:bg_none .s:fmt_none
|
||||
exe "hi! DiffAdd" .s:fg_addfg .s:bg_addbg .s:fmt_none
|
||||
exe "hi! DiffChange" .s:fg_changefg .s:bg_changebg .s:fmt_none
|
||||
@ -300,7 +300,7 @@ exe "hi! Folded" .s:fg_comment .s:bg_darkcolumn .s:fmt_none
|
||||
exe "hi! FoldColumn" .s:fg_none .s:bg_darkcolumn .s:fmt_none
|
||||
exe "hi! SignColumn" .s:fg_none .s:bg_darkcolumn .s:fmt_none
|
||||
" Incsearch"
|
||||
exe "hi! LineNr" .s:fg_selection .s:bg_none .s:fmt_none
|
||||
exe "hi! LineNr" .s:fg_comment .s:bg_none .s:fmt_none
|
||||
exe "hi! CursorLineNr" .s:fg_yellow .s:bg_none .s:fmt_none
|
||||
exe "hi! MatchParen" .s:fg_background .s:bg_changebg .s:fmt_none
|
||||
exe "hi! ModeMsg" .s:fg_green .s:bg_none .s:fmt_none
|
||||
|
@ -8,7 +8,10 @@ vim.cmd('set guicursor=')
|
||||
vim.cmd('filetype plugin indent on')
|
||||
vim.cmd('set ts=4 sts=4 sw=4 expandtab')
|
||||
|
||||
-- hybrid numbering
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.number = true
|
||||
vim.opt.cursorline = true
|
||||
|
||||
vim.opt.compatible = false
|
||||
|
||||
|
11
editors/nvim/config/lua/fuzzy.lua
Normal file
11
editors/nvim/config/lua/fuzzy.lua
Normal file
@ -0,0 +1,11 @@
|
||||
require('telescope').setup({
|
||||
defaults = {
|
||||
layout_config = {
|
||||
horizontal = { width = 0.5 }
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
local builtin = require('telescope.builtin')
|
||||
|
||||
vim.keymap.set('n','<leader>f', builtin.find_files, {})
|
@ -1,4 +1,5 @@
|
||||
require('tree')
|
||||
require('fuzzy')
|
||||
|
||||
-- airline settings
|
||||
if vim.g.airline_symbols == nil then
|
||||
|
2
editors/nvim/config/spell/en.utf-8.add
Normal file
2
editors/nvim/config/spell/en.utf-8.add
Normal file
@ -0,0 +1,2 @@
|
||||
L2
|
||||
L3
|
BIN
editors/nvim/config/spell/en.utf-8.add.spl
Normal file
BIN
editors/nvim/config/spell/en.utf-8.add.spl
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
Subproject commit 253d34830709d690f013daf2853a9d21ad7accab
|
@ -0,0 +1 @@
|
||||
Subproject commit a3f17d3baf70df58b9d3544ea30abe52a7a832c2
|
@ -1 +1 @@
|
||||
Subproject commit 18b85395d32e235128b85a059dd60b562f9dbfe1
|
||||
Subproject commit 038e3a6ca59f11b3bb6a94087c1792322d1a1d5c
|
@ -1 +1 @@
|
||||
Subproject commit 2febbe1f00be04f16daa6464cb39214a8566ec4b
|
||||
Subproject commit 62f42f013d866139fa23068ac2651b3f7e05a56f
|
@ -1 +1 @@
|
||||
Subproject commit 9e64fc1ab60b2e97d39410482b64289dbbaf4eda
|
||||
Subproject commit b8a41085bfd67fee97ad075c6df65590ce7417a7
|
@ -1 +1 @@
|
||||
Subproject commit df4be8626e2c5b2a42eb60e1f100fce469b81f7d
|
||||
Subproject commit 5d3d1b6cbdc4be0b4c6105c1ab1f769d76d3c68f
|
@ -1 +1 @@
|
||||
Subproject commit b8607084b324ab0c98892ca20f78433904aecef5
|
||||
Subproject commit 112e62c1c873fb1910c08ed331f354ae017aac57
|
2
src/fzf
2
src/fzf
@ -1 +1 @@
|
||||
Subproject commit f7447aece12f9b95133b803d5c4f71815bee8ca6
|
||||
Subproject commit 3364d4d147ade148d8e5dd67609e46f0ef6c50fc
|
@ -1 +1 @@
|
||||
Subproject commit afe4dc5e12d0eb99dcae4ae320c48bdbd7f5a8c2
|
||||
Subproject commit 35ba33193f93e4e849a18d262d2691afb3782f82
|
@ -1 +1 @@
|
||||
Subproject commit b8e65a696157e1e8c407ed1f3aac768368bc4e55
|
||||
Subproject commit cb8bdd3e43b50a0610cff3a69959cb27eb407afc
|
Loading…
x
Reference in New Issue
Block a user