Compare commits
No commits in common. "e86fa4178449a89afb2b0893db33b7fd0818cc62" and "d46929c1f3e75bcd00fb9bbce30ff8ed60fb804c" have entirely different histories.
e86fa41784
...
d46929c1f3
@ -1,14 +0,0 @@
|
|||||||
local telescope = require 'telescope'
|
|
||||||
|
|
||||||
telescope.setup({
|
|
||||||
extensions = {
|
|
||||||
whaler = {
|
|
||||||
directories = { "/home/lupan/src" },
|
|
||||||
oneoff_directories = { "/home/lupan/dotfiles" },
|
|
||||||
auto_file_explorer = false,
|
|
||||||
auto_cwd = true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
telescope.load_extension("whaler")
|
|
@ -42,5 +42,3 @@ vim.o.expandtab = true
|
|||||||
vim.o.expandtab = true
|
vim.o.expandtab = true
|
||||||
|
|
||||||
vim.g.lightspeed_no_default_keymaps = true
|
vim.g.lightspeed_no_default_keymaps = true
|
||||||
|
|
||||||
vim.o.cursorline = true
|
|
||||||
|
1
nvim/.config/nvim/lua/lupan/plugins.lua
Normal file
1
nvim/.config/nvim/lua/lupan/plugins.lua
Normal file
@ -0,0 +1 @@
|
|||||||
|
-- require('lazy').setup('plugins')
|
@ -58,8 +58,6 @@ for i = 1, 9, 1 do
|
|||||||
key('n', '<leader>t' .. i, '<cmd>' .. i .. 'tabnext<cr>', { desc = '[T]ab nr [' .. i .. ']' })
|
key('n', '<leader>t' .. i, '<cmd>' .. i .. 'tabnext<cr>', { desc = '[T]ab nr [' .. i .. ']' })
|
||||||
end
|
end
|
||||||
|
|
||||||
key("n", "<leader>fl", '<cmd>Telescope whaler<cr>', { desc = '[F]ind with wha[l]er' })
|
|
||||||
|
|
||||||
-- Diagnostic keymaps
|
-- Diagnostic keymaps
|
||||||
key('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' })
|
key('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' })
|
||||||
key('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' })
|
key('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' })
|
||||||
|
@ -1,21 +1,16 @@
|
|||||||
local function cwd()
|
|
||||||
return vim.fn.getcwd()
|
|
||||||
end
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
{
|
{
|
||||||
'rmehri01/onenord.nvim',
|
'neanias/everforest-nvim',
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
|
lazy = false,
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd [[colorscheme onenord]]
|
require("everforest").setup({
|
||||||
end,
|
background = 'hard',
|
||||||
|
})
|
||||||
|
vim.cmd.colorscheme 'everforest'
|
||||||
|
end
|
||||||
},
|
},
|
||||||
'neanias/everforest-nvim',
|
|
||||||
'bluz71/vim-nightfly-colors',
|
|
||||||
'bluz71/vim-moonfly-colors',
|
|
||||||
'Verf/deepwhite.nvim',
|
|
||||||
|
|
||||||
{
|
{
|
||||||
-- Statusline (see `:help lualine.txt`)
|
-- Statusline (see `:help lualine.txt`)
|
||||||
@ -23,13 +18,10 @@ return {
|
|||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'auto',
|
theme = 'everforest',
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
},
|
},
|
||||||
sections = {
|
|
||||||
lualine_x = { cwd, 'encoding', 'fileformat', 'filetype' }
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -37,7 +29,10 @@ return {
|
|||||||
-- Indentation guides (see `:help indent_blankline.txt`)
|
-- Indentation guides (see `:help indent_blankline.txt`)
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
'lukas-reineke/indent-blankline.nvim',
|
||||||
main = "ibl",
|
main = "ibl",
|
||||||
opts = {},
|
opts = {
|
||||||
|
-- char = '┊',
|
||||||
|
-- show_trailing_blankline_indent = false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -22,7 +22,4 @@ return {
|
|||||||
},
|
},
|
||||||
|
|
||||||
'ggandor/lightspeed.nvim',
|
'ggandor/lightspeed.nvim',
|
||||||
|
|
||||||
-- change directory with telescope from a list of dierectories
|
|
||||||
"SalOrak/whaler",
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user