formatted code
This commit is contained in:
parent
da382b5d61
commit
4316ac84df
|
@ -25,7 +25,6 @@ vim.keymap.set('n', '<leader>u', '20k')
|
||||||
vim.keymap.set('v', '<leader>n', '20j')
|
vim.keymap.set('v', '<leader>n', '20j')
|
||||||
vim.keymap.set('v', '<leader>u', '20k')
|
vim.keymap.set('v', '<leader>u', '20k')
|
||||||
|
|
||||||
|
|
||||||
-- Alternate way to save
|
-- Alternate way to save
|
||||||
vim.cmd('nnoremap <C-s> :w!<CR>')
|
vim.cmd('nnoremap <C-s> :w!<CR>')
|
||||||
vim.cmd('inoremap <C-s> <ESC> :w!<CR>')
|
vim.cmd('inoremap <C-s> <ESC> :w!<CR>')
|
||||||
|
@ -33,7 +32,6 @@ vim.cmd('inoremap <C-s> <ESC> :w!<CR>')
|
||||||
-- Alternate way to quit
|
-- Alternate way to quit
|
||||||
vim.cmd('nnoremap <S-c> :q!<CR>')
|
vim.cmd('nnoremap <S-c> :q!<CR>')
|
||||||
|
|
||||||
|
|
||||||
-- ================= File management ================= --
|
-- ================= File management ================= --
|
||||||
|
|
||||||
-- swapfile has global & local config, eventhough help says otherwise
|
-- swapfile has global & local config, eventhough help says otherwise
|
||||||
|
|
|
@ -2,5 +2,5 @@ return {
|
||||||
"windwp/nvim-autopairs",
|
"windwp/nvim-autopairs",
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-autopairs").setup {}
|
require("nvim-autopairs").setup {}
|
||||||
end,
|
end
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,4 +7,3 @@ return {
|
||||||
vim.keymap.set('', 'X', '<Cmd>BufferClose<CR>')
|
vim.keymap.set('', 'X', '<Cmd>BufferClose<CR>')
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
return {
|
return {
|
||||||
'onsails/lspkind.nvim',
|
'onsails/lspkind.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
|
|
||||||
local lspkind = require 'lspkind'
|
local lspkind = require 'lspkind'
|
||||||
|
|
||||||
-- nvim-cmp setup
|
-- nvim-cmp setup
|
||||||
|
@ -23,4 +22,3 @@ return {
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,6 @@ options = {
|
||||||
lualine_x = {'location'},
|
lualine_x = {'location'},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = {}
|
lualine_z = {}
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,8 @@ return {
|
||||||
local sources = {
|
local sources = {
|
||||||
formatting.eslint_d, formatting.prettierd.with({
|
formatting.eslint_d, formatting.prettierd.with({
|
||||||
env = {
|
env = {
|
||||||
PRETTIERD_DEFAULT_CONFIG = vim.fn.expand "~/.config/nvim/utils/linter-config/.prettierrc.js"
|
PRETTIERD_DEFAULT_CONFIG = vim.fn
|
||||||
|
.expand "~/.config/nvim/utils/linter-config/.prettierrc.js"
|
||||||
}
|
}
|
||||||
}), -- formatting.prettier
|
}), -- formatting.prettier
|
||||||
-- .with({extra_args = {'--single-quote', '--tab-width 2', '--arrow-parens avoid'}}),
|
-- .with({extra_args = {'--single-quote', '--tab-width 2', '--arrow-parens avoid'}}),
|
||||||
|
@ -20,7 +21,8 @@ return {
|
||||||
'--no-keep-simple-function-one-line', '--no-break-after-operator', '--column-limit=100',
|
'--no-keep-simple-function-one-line', '--no-break-after-operator', '--column-limit=100',
|
||||||
'--break-after-table-lb', '--indent-width=2'
|
'--break-after-table-lb', '--indent-width=2'
|
||||||
}
|
}
|
||||||
}), diagnostics.eslint_d.with({diagnostics_format = "[#{c}] #{m} (#{s})"}), codeActions.eslint_d
|
}), diagnostics.eslint_d.with({diagnostics_format = "[#{c}] #{m} (#{s})"}),
|
||||||
|
codeActions.eslint_d
|
||||||
}
|
}
|
||||||
|
|
||||||
local lsp_formatting = function(bufnr)
|
local lsp_formatting = function(bufnr)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
'nvim-tree/nvim-tree.lua',
|
'nvim-tree/nvim-tree.lua',
|
||||||
requires = {
|
requires = {
|
||||||
'nvim-tree/nvim-web-devicons', -- optional, for file icons
|
'nvim-tree/nvim-web-devicons' -- optional, for file icons
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
local nvim_tree_events = require('nvim-tree.events')
|
local nvim_tree_events = require('nvim-tree.events')
|
||||||
|
@ -29,10 +29,7 @@ return {
|
||||||
require("nvim-tree").setup({
|
require("nvim-tree").setup({
|
||||||
sync_root_with_cwd = true,
|
sync_root_with_cwd = true,
|
||||||
respect_buf_cwd = true,
|
respect_buf_cwd = true,
|
||||||
update_focused_file = {
|
update_focused_file = { enable = true, update_root = true }
|
||||||
enable = true,
|
|
||||||
update_root = true
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1 @@
|
||||||
return {
|
return {'mhinz/vim-startify'}
|
||||||
'mhinz/vim-startify'
|
|
||||||
}
|
|
||||||
|
|
|
@ -5,21 +5,33 @@ return {
|
||||||
config = function()
|
config = function()
|
||||||
-- Find files using lua fuctions
|
-- Find files using lua fuctions
|
||||||
local opts = {silent = true, noremap = true}
|
local opts = {silent = true, noremap = true}
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>ff', "<Cmd>lua require'telescope.builtin'.find_files()<CR>", {silent=false, noremap=true})
|
vim.api.nvim_set_keymap('n', '<Leader>ff',
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>fg', "<Cmd>lua require'telescope.builtin'.live_grep()<CR>", opts)
|
"<Cmd>lua require'telescope.builtin'.find_files()<CR>",
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>fs', "<Cmd>lua require'telescope.builtin'.grep_string()<CR>", opts)
|
{silent = false, noremap = true})
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>ft', "<Cmd>lua require'telescope.builtin'.file_browser()<CR>", opts)
|
vim.api.nvim_set_keymap('n', '<Leader>fg',
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>fo', "<Cmd>lua require'telescope.builtin'.oldfiles()<CR>", opts)
|
"<Cmd>lua require'telescope.builtin'.live_grep()<CR>", opts)
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>gc', "<Cmd>lua require'telescope.builtin'.git_commits()<CR>", opts)
|
vim.api.nvim_set_keymap('n', '<Leader>fs',
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>gb', "<Cmd>lua require'telescope.builtin'.git_branches()<CR>", opts)
|
"<Cmd>lua require'telescope.builtin'.grep_string()<CR>", opts)
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>fb', "<Cmd>lua require'telescope.builtin'.buffers()<CR>", opts)
|
vim.api.nvim_set_keymap('n', '<Leader>ft',
|
||||||
vim.api.nvim_set_keymap('n', '<Leader>fh', "<Cmd>lua require'telescope.builtin'.help_tags()<CR>", opts)
|
"<Cmd>lua require'telescope.builtin'.file_browser()<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap('n', '<Leader>fo', "<Cmd>lua require'telescope.builtin'.oldfiles()<CR>",
|
||||||
|
opts)
|
||||||
|
vim.api.nvim_set_keymap('n', '<Leader>gc',
|
||||||
|
"<Cmd>lua require'telescope.builtin'.git_commits()<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap('n', '<Leader>gb',
|
||||||
|
"<Cmd>lua require'telescope.builtin'.git_branches()<CR>", opts)
|
||||||
|
vim.api.nvim_set_keymap('n', '<Leader>fb', "<Cmd>lua require'telescope.builtin'.buffers()<CR>",
|
||||||
|
opts)
|
||||||
|
vim.api.nvim_set_keymap('n', '<Leader>fh',
|
||||||
|
"<Cmd>lua require'telescope.builtin'.help_tags()<CR>", opts)
|
||||||
|
|
||||||
local actions = require('telescope.actions')
|
local actions = require('telescope.actions')
|
||||||
require('telescope').setup {
|
require('telescope').setup {
|
||||||
defaults = {
|
defaults = {
|
||||||
-- program to use for searching with its arguments
|
-- program to use for searching with its arguments
|
||||||
find_command = {'rg', '--no-heading', '--with-filename', '--line-number', '--column', '--smart-case'},
|
find_command = {
|
||||||
|
'rg', '--no-heading', '--with-filename', '--line-number', '--column', '--smart-case'
|
||||||
|
},
|
||||||
-- prompt_position = 'top', -- have prompt at the top (has no effect on vertical configuration)
|
-- prompt_position = 'top', -- have prompt at the top (has no effect on vertical configuration)
|
||||||
prompt_prefix = ' ', -- symbol on prompt window
|
prompt_prefix = ' ', -- symbol on prompt window
|
||||||
selection_caret = ' ', -- symbol on selected row in results window
|
selection_caret = ' ', -- symbol on selected row in results window
|
||||||
|
@ -28,9 +40,7 @@ return {
|
||||||
selection_strategy = 'reset', -- what happens to selection when list changes
|
selection_strategy = 'reset', -- what happens to selection when list changes
|
||||||
sorting_strategy = 'ascending', -- start with most important search on top
|
sorting_strategy = 'ascending', -- start with most important search on top
|
||||||
layout_strategy = 'horizontal', -- vertical layout
|
layout_strategy = 'horizontal', -- vertical layout
|
||||||
layout_config = {
|
layout_config = {prompt_position = 'top'},
|
||||||
prompt_position = 'top'
|
|
||||||
},
|
|
||||||
file_sorter = require'telescope.sorters'.get_fuzzy_file,
|
file_sorter = require'telescope.sorters'.get_fuzzy_file,
|
||||||
file_ignore_patterns = {'node_modules/.*'}, -- never search in node_modules/ dir
|
file_ignore_patterns = {'node_modules/.*'}, -- never search in node_modules/ dir
|
||||||
generic_sorter = require'telescope.sorters'.get_generic_fuzzy_sorter,
|
generic_sorter = require'telescope.sorters'.get_generic_fuzzy_sorter,
|
||||||
|
@ -52,22 +62,17 @@ return {
|
||||||
['<C-k>'] = actions.move_selection_previous,
|
['<C-k>'] = actions.move_selection_previous,
|
||||||
['<C-q>'] = actions.smart_send_to_qflist + actions.open_qflist,
|
['<C-q>'] = actions.smart_send_to_qflist + actions.open_qflist,
|
||||||
-- ['ć'] = actions.close,
|
-- ['ć'] = actions.close,
|
||||||
['<CR>'] = actions.select_default + actions.center,
|
['<CR>'] = actions.select_default + actions.center
|
||||||
},
|
},
|
||||||
n = {
|
n = {
|
||||||
['<C-j>'] = actions.move_selection_next,
|
['<C-j>'] = actions.move_selection_next,
|
||||||
['<C-k>'] = actions.move_selection_previous,
|
['<C-k>'] = actions.move_selection_previous,
|
||||||
['<C-q>'] = actions.smart_send_to_qflist + actions.open_qflist,
|
['<C-q>'] = actions.smart_send_to_qflist + actions.open_qflist,
|
||||||
['ć'] = actions.close,
|
['ć'] = actions.close
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
extensions = {
|
extensions = {fzy_native = {override_generic_sorter = false, override_file_sorter = true}}
|
||||||
fzy_native = {
|
|
||||||
override_generic_sorter = false,
|
|
||||||
override_file_sorter = true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue