Removed octo and fixed order of operations
This commit is contained in:
parent
3ffaa0cf3f
commit
e69055ea99
8
init.lua
8
init.lua
|
@ -1,3 +1,6 @@
|
|||
-- Settings
|
||||
require 'opt.options'
|
||||
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
|
@ -13,15 +16,11 @@ vim.opt.rtp:prepend(lazypath)
|
|||
|
||||
vim.api.nvim_command('autocmd VimEnter * lua require("lualine").hide()')
|
||||
|
||||
|
||||
require("lazy").setup("plugins")
|
||||
|
||||
-- Keybindsings
|
||||
require 'keybindings.keymap'
|
||||
|
||||
-- Settings
|
||||
require 'opt.options'
|
||||
|
||||
-- Configuration of plugins
|
||||
require 'plugin.telescope'
|
||||
require 'plugin.yanky'
|
||||
|
@ -32,7 +31,6 @@ require 'plugin.dracula'
|
|||
require 'plugin.cmp'
|
||||
require 'plugin.auto_session'
|
||||
require 'plugin.gitsigns'
|
||||
require 'plugin.octo'
|
||||
require 'plugin.lualine'
|
||||
|
||||
vim.cmd('colorscheme dracula')
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"LuaSnip": { "branch": "master", "commit": "a7a4b4682c4b3e2ba82b82a4e6e5f5a0e79dec32" },
|
||||
"LuaSnip-snippets.nvim": { "branch": "main", "commit": "d7e40e4cce622eab2316607dbcd8d6039bcb9fe0" },
|
||||
"auto-session": { "branch": "main", "commit": "af2219b9fa99c1d7ac409bd9eac094c459d3f52d" },
|
||||
"base16-vim": { "branch": "main", "commit": "6e955d704d046b0dc3e5c2d68a2a6eeffd2b5d3d" },
|
||||
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
|
||||
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
|
||||
"dracula.nvim": { "branch": "main", "commit": "8d8bddb8814c3e7e62d80dda65a9876f97eb699c" },
|
||||
|
@ -12,7 +11,7 @@
|
|||
"fzf-lsp.nvim": { "branch": "main", "commit": "16905056051759b15a388709a3fa65ff098eb243" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "75dc649106827183547d3bedd4602442340d2f7f" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "af6afefbb46ab29a8a1db69536b04290a9403876" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "bef521ac89c8d423f9d092e37b58e8af0c099309" },
|
||||
"lazygit.nvim": { "branch": "main", "commit": "0ada6c6e7e138df92f5009b6952f4ac41248305a" },
|
||||
"leap.nvim": { "branch": "main", "commit": "25753d8a16b69fbbce5d392702c21dbc79d86bd1" },
|
||||
"lsp-zero.nvim": { "branch": "v3.x", "commit": "2b5e9a39b3bf60bfb0cc7c35d5f2e879d4cd72ea" },
|
||||
|
|
|
@ -16,6 +16,11 @@ telescope.setup {
|
|||
find_files = {
|
||||
hidden = true,
|
||||
theme = "dropdown"
|
||||
},
|
||||
live_grep = {
|
||||
additional_args = function(_)
|
||||
return { "--hidden" }
|
||||
end
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue