Add neoclip

This commit is contained in:
Dave Gallant
2021-09-25 22:05:32 -04:00
parent d68948bfdc
commit a33fdfdc27
2 changed files with 209 additions and 216 deletions

1
flake.lock generated
View File

@@ -75,6 +75,7 @@
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": [ "nixpkgs": [
"neovim-nightly-overlay",
"nixpkgs" "nixpkgs"
] ]
}, },

View File

@@ -1,269 +1,272 @@
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- Options {{{1 --------------------------------------------------------------- -- Options {{{1 ---------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
vim.opt.autoindent = true -- maintain indent of current line vim.opt.autoindent = true -- maintain indent of current line
vim.opt.backup = false -- don't make backups before writing vim.opt.backup = false -- don't make backups before writing
vim.opt.belloff = 'all' -- never ring the bell for any reason vim.opt.belloff = "all" -- never ring the bell for any reason
vim.opt.breakindent = true vim.opt.breakindent = true
vim.opt.completeopt = 'menuone' -- show menu even if there is only one candidate (for nvim-compe) vim.opt.completeopt = "menuone" -- show menu even if there is only one candidate (for nvim-compe)
vim.opt.completeopt = vim.opt.completeopt + 'noselect' -- don't automatically select canditate (for nvim-compe) vim.opt.completeopt = vim.opt.completeopt + "noselect" -- don't automatically select canditate (for nvim-compe)
vim.opt.cursorline = true -- highlight current line vim.opt.cursorline = true -- highlight current line
vim.opt.expandtab = true -- always use spaces instead of tabs vim.opt.expandtab = true -- always use spaces instead of tabs
vim.opt.fillchars = { vim.opt.fillchars = {
diff = '', -- BULLET OPERATOR (U+2219, UTF-8: E2 88 99) diff = "", -- BULLET OPERATOR (U+2219, UTF-8: E2 88 99)
eob = ' ', -- NO-BREAK SPACE (U+00A0, UTF-8: C2 A0) to suppress ~ at EndOfBuffer eob = " ", -- NO-BREAK SPACE (U+00A0, UTF-8: C2 A0) to suppress ~ at EndOfBuffer
vert = '', -- BOX DRAWINGS HEAVY VERTICAL (U+2503, UTF-8: E2 94 83) vert = "", -- BOX DRAWINGS HEAVY VERTICAL (U+2503, UTF-8: E2 94 83)
} }
vim.opt.hlsearch = true vim.opt.hlsearch = true
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.incsearch = true vim.opt.incsearch = true
vim.opt.mouse = 'a' -- enable mouse vim.opt.mouse = "a" -- enable mouse
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.showcmd = true vim.opt.showcmd = true
vim.opt.smartcase = true vim.opt.smartcase = true
vim.opt.tabstop = 2 vim.opt.tabstop = 2
vim.opt.wildmenu = true vim.opt.wildmenu = true
vim.opt.modelines = 5 -- scan this many lines looking for modeline vim.opt.modelines = 5 -- scan this many lines looking for modeline
vim.opt.number = true -- show line numbers in gutter vim.opt.number = true -- show line numbers in gutter
vim.opt.pumblend = 10 -- pseudo-transparency for popup-menu vim.opt.pumblend = 10 -- pseudo-transparency for popup-menu
vim.opt.relativenumber = true -- show relative numbers in gutter vim.opt.relativenumber = true -- show relative numbers in gutter
vim.opt.scrolloff = 3 -- start scrolling 3 lines before edge of viewport vim.opt.scrolloff = 3 -- start scrolling 3 lines before edge of viewport
vim.opt.spellcapcheck = '' -- don't check for capital letters at start of sentence vim.opt.spellcapcheck = "" -- don't check for capital letters at start of sentence
vim.opt.splitbelow = true -- open horizontal splits below current window vim.opt.splitbelow = true -- open horizontal splits below current window
vim.opt.splitright = true -- open vertical splits to the right of the current window vim.opt.splitright = true -- open vertical splits to the right of the current window
vim.opt.suffixes = vim.opt.suffixes - '.h' -- don't sort header files at lower priority vim.opt.suffixes = vim.opt.suffixes - ".h" -- don't sort header files at lower priority
vim.opt.swapfile = false -- don't create swap files vim.opt.swapfile = false -- don't create swap files
vim.opt.switchbuf = 'usetab' -- try to reuse windows/tabs when switching buffers vim.opt.switchbuf = "usetab" -- try to reuse windows/tabs when switching buffers
vim.opt.synmaxcol = 200 -- don't bother syntax highlighting long lines vim.opt.synmaxcol = 200 -- don't bother syntax highlighting long lines
vim.opt.tabstop = 2 -- spaces per tab vim.opt.tabstop = 2 -- spaces per tab
vim.opt.termguicolors = true -- use guifg/guibg instead of ctermfg/ctermbg in terminal vim.opt.termguicolors = true -- use guifg/guibg instead of ctermfg/ctermbg in terminal
vim.opt.shell = 'bash' -- shell to use for `!`, `:!`, `system()` etc. vim.opt.shell = "bash" -- shell to use for `!`, `:!`, `system()` etc.
vim.opt.shiftround = false -- don't always indent by multiple of shiftwidth vim.opt.shiftround = false -- don't always indent by multiple of shiftwidth
vim.opt.shiftwidth = 2 -- spaces per tab (when shifting) vim.opt.shiftwidth = 2 -- spaces per tab (when shifting)
vim.opt.shortmess = vim.opt.shortmess + 'A' -- ignore annoying swapfile messages vim.opt.shortmess = vim.opt.shortmess + "A" -- ignore annoying swapfile messages
vim.opt.shortmess = vim.opt.shortmess + 'I' -- no splash screen vim.opt.shortmess = vim.opt.shortmess + "I" -- no splash screen
vim.opt.shortmess = vim.opt.shortmess + 'O' -- file-read message overwrites previous vim.opt.shortmess = vim.opt.shortmess + "O" -- file-read message overwrites previous
vim.opt.shortmess = vim.opt.shortmess + 'T' -- truncate non-file messages in middle vim.opt.shortmess = vim.opt.shortmess + "T" -- truncate non-file messages in middle
vim.opt.shortmess = vim.opt.shortmess + 'W' -- don't echo "[w]"/"[written]" when writing vim.opt.shortmess = vim.opt.shortmess + "W" -- don't echo "[w]"/"[written]" when writing
vim.opt.shortmess = vim.opt.shortmess + 'a' -- use abbreviations in messages eg. `[RO]` instead of `[readonly]` vim.opt.shortmess = vim.opt.shortmess + "a" -- use abbreviations in messages eg. `[RO]` instead of `[readonly]`
vim.opt.shortmess = vim.opt.shortmess + 'c' -- completion messages vim.opt.shortmess = vim.opt.shortmess + "c" -- completion messages
vim.opt.shortmess = vim.opt.shortmess + 'o' -- overwrite file-written messages vim.opt.shortmess = vim.opt.shortmess + "o" -- overwrite file-written messages
vim.opt.shortmess = vim.opt.shortmess + 't' -- truncate file messages at start vim.opt.shortmess = vim.opt.shortmess + "t" -- truncate file messages at start
vim.opt.showbreak = '' -- DOWNWARDS ARROW WITH TIP RIGHTWARDS (U+21B3, UTF-8: E2 86 B3) vim.opt.showbreak = "" -- DOWNWARDS ARROW WITH TIP RIGHTWARDS (U+21B3, UTF-8: E2 86 B3)
vim.opt.showcmd = false -- don't show extra info at end of command line vim.opt.showcmd = false -- don't show extra info at end of command line
vim.opt.sidescroll = 0 -- sidescroll in jumps because terminals are slow vim.opt.sidescroll = 0 -- sidescroll in jumps because terminals are slow
vim.opt.sidescrolloff = 3 -- same as scrolloff, but for columns vim.opt.sidescrolloff = 3 -- same as scrolloff, but for columns
vim.opt.smarttab = true -- <tab>/<BS> indent/dedent in leading whitespace vim.opt.smarttab = true -- <tab>/<BS> indent/dedent in leading whitespace
-- Format JSON -- Format JSON
vim.cmd[[command! JsonFormat execute "::%!jq '.'"]] vim.cmd([[command! JsonFormat execute "::%!jq '.'"]])
-- Tab shortcuts -- Tab shortcuts
vim.api.nvim_set_keymap("n", "<C-n>", "<cmd>tabnew<cr>", vim.api.nvim_set_keymap("n", "<C-n>", "<cmd>tabnew<cr>", { noremap = true })
{noremap = true}
)
-- Copy to OS clipboard -- Copy to OS clipboard
vim.api.nvim_set_keymap("v", "<leader>y", "\"+y", vim.api.nvim_set_keymap("v", "<leader>y", '"+y', { noremap = true })
{noremap = true}
)
-- Folding -- Folding
vim.api.nvim_set_keymap("n", "<space>", "za", vim.api.nvim_set_keymap("n", "<space>", "za", { silent = true, noremap = true })
{silent = true, noremap = true}
)
-- Map gx to xdg-open -- Map gx to xdg-open
vim.api.nvim_set_keymap("n", "gx", ":execute 'silent! !xdg-open ' . shellescape(expand('<cWORD>'), 1)<cr>", vim.api.nvim_set_keymap(
{silent = true, noremap = true} "n",
"gx",
":execute 'silent! !xdg-open ' . shellescape(expand('<cWORD>'), 1)<cr>",
{ silent = true, noremap = true }
) )
--Set colorscheme --Set colorscheme
vim.o.termguicolors = true vim.o.termguicolors = true
vim.cmd[[colorscheme gruvbox]] vim.cmd([[colorscheme gruvbox]])
-- Use tab as trigger keys -- Use tab as trigger keys
vim.cmd[[imap <tab> <Plug>(completion_smart_tab)]] vim.cmd([[imap <tab> <Plug>(completion_smart_tab)]])
vim.cmd[[imap <s-tab> <Plug>(completion_smart_s_tab)]] vim.cmd([[imap <s-tab> <Plug>(completion_smart_s_tab)]])
-- Remember line number -- Remember line number
vim.cmd[[au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif]] vim.cmd([[au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif]])
-- Replace visual selection -- Replace visual selection
vim.cmd[[vnoremap <C-r> "hy:%s/<C-r>h//g<left><left>]] vim.cmd([[vnoremap <C-r> "hy:%s/<C-r>h//g<left><left>]])
-- Indent YAML -- Indent YAML
vim.cmd[[au FileType yaml setlocal ts=2 sts=2 sw=2 expandtab]] vim.cmd([[au FileType yaml setlocal ts=2 sts=2 sw=2 expandtab]])
-- Indent Python -- Indent Python
vim.cmd[[au BufNewFile,BufRead *.py set tabstop=4 softtabstop=4 shiftwidth=4 textwidth=79 expandtab autoindent fileformat=unix]] vim.cmd([[au BufNewFile,BufRead *.py set tabstop=4 softtabstop=4 shiftwidth=4 textwidth=79 expandtab autoindent fileformat=unix]])
-- Highlight whitespace -- Highlight whitespace
vim.cmd[[highlight ExtraWhitespace ctermbg=red guibg=red]] vim.cmd([[highlight ExtraWhitespace ctermbg=red guibg=red]])
vim.cmd[[match ExtraWhitespace /\s\+$/]] vim.cmd([[match ExtraWhitespace /\s\+$/]])
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- LSP {{{1 ------------------------------------------------------------------- -- LSP {{{1 -------------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
require'lspconfig'.bashls.setup{} require("lspconfig").bashls.setup({})
require'lspconfig'.gopls.setup{} require("lspconfig").gopls.setup({})
require'lspconfig'.pyright.setup{} require("lspconfig").pyright.setup({})
require'lspconfig'.rls.setup{} require("lspconfig").rls.setup({})
require'lspconfig'.rnix.setup{} require("lspconfig").rnix.setup({})
require'lspconfig'.solargraph.setup{} require("lspconfig").solargraph.setup({})
require'lspconfig'.terraformls.setup{} require("lspconfig").terraformls.setup({})
require'lspconfig'.tflint.setup{} require("lspconfig").tflint.setup({})
require'lspconfig'.yamlls.setup{} require("lspconfig").yamlls.setup({})
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- packer {{{1 ------------------------------------------------------------------- -- packer {{{1 -------------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
require('packer').startup(function() require("packer").startup(function()
use { 'ms-jpq/coq_nvim', branch = 'coq'} -- main one use({ "ms-jpq/coq_nvim", branch = "coq" }) -- main one
use { 'ms-jpq/coq.artifacts', branch= 'artifacts'} -- 9000+ Snippets use({ "ms-jpq/coq.artifacts", branch = "artifacts" }) -- 9000+ Snippets
use({
"AckslD/nvim-neoclip.lua",
config = function()
require("neoclip").setup()
end,
})
end) end)
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Plugins {{{1 --------------------------------------------------------------- -- Plugins {{{1 ---------------------------------------------------------------
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- gitlinker -- gitlinker
require"gitlinker".setup() require("gitlinker").setup()
-- status line -- status line
require('lualine').setup { require("lualine").setup({
options = { options = {
theme = 'gruvbox' theme = "gruvbox",
} },
} })
-- treesitter -- treesitter
require('nvim-treesitter.configs').setup({ require("nvim-treesitter.configs").setup({
ensure_installed = "all", ensure_installed = "all",
highlight = { highlight = {
enable = true, enable = true,
custom_captures = { custom_captures = {
-- ["<capture group>"] = "<highlight group>", -- ["<capture group>"] = "<highlight group>",
-- ["keyword"] = "TSString", -- ["keyword"] = "TSString",
}, },
}, },
indent = { indent = {
enable = true enable = true,
}, },
rainbow = { rainbow = {
enable = true, enable = true,
extended_mode = true extended_mode = true,
}, },
}) })
-- folding -- folding
vim.api.nvim_exec([[ vim.api.nvim_exec(
[[
set foldmethod=expr set foldmethod=expr
set foldlevel=20 set foldlevel=20
set nofoldenable set nofoldenable
set foldexpr=nvim_treesitter#foldexpr() set foldexpr=nvim_treesitter#foldexpr()
]], true) ]],
true
)
-- trouble -- trouble
require("trouble").setup { require("trouble").setup({
{ {
position = "bottom", -- position of the list can be: bottom, top, left, right position = "bottom", -- position of the list can be: bottom, top, left, right
height = 10, -- height of the trouble list when position is top or bottom height = 10, -- height of the trouble list when position is top or bottom
width = 50, -- width of the list when position is left or right width = 50, -- width of the list when position is left or right
icons = true, -- use devicons for filenames icons = true, -- use devicons for filenames
mode = "lsp_workspace_diagnostics", -- "lsp_workspace_diagnostics", "lsp_document_diagnostics", "quickfix", "lsp_references", "loclist" mode = "lsp_workspace_diagnostics", -- "lsp_workspace_diagnostics", "lsp_document_diagnostics", "quickfix", "lsp_references", "loclist"
fold_open = "", -- icon used for open folds fold_open = "", -- icon used for open folds
fold_closed = "", -- icon used for closed folds fold_closed = "", -- icon used for closed folds
action_keys = { -- key mappings for actions in the trouble list action_keys = { -- key mappings for actions in the trouble list
-- map to {} to remove a mapping, for example: close = "q", -- close the list
-- close = {}, cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
close = "q", -- close the list refresh = "r", -- manually refresh
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor jump = { "<cr>", "<tab>" }, -- jump to the diagnostic or open / close folds
refresh = "r", -- manually refresh open_split = { "<c-x>" }, -- open buffer in new split
jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
open_split = { "<c-x>" }, -- open buffer in new split open_tab = { "<c-t>" }, -- open buffer in new tab
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit jump_close = { "o" }, -- jump to the diagnostic and close the list
open_tab = { "<c-t>" }, -- open buffer in new tab toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
jump_close = {"o"}, -- jump to the diagnostic and close the list toggle_preview = "P", -- toggle auto_preview
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode hover = "K", -- opens a small popup with the full multiline message
toggle_preview = "P", -- toggle auto_preview preview = "p", -- preview the diagnostic location
hover = "K", -- opens a small popup with the full multiline message close_folds = { "zM", "zm" }, -- close all folds
preview = "p", -- preview the diagnostic location open_folds = { "zR", "zr" }, -- open all folds
close_folds = {"zM", "zm"}, -- close all folds toggle_fold = { "zA", "za" }, -- toggle fold of current file
open_folds = {"zR", "zr"}, -- open all folds previous = "k", -- preview item
toggle_fold = {"zA", "za"}, -- toggle fold of current file next = "j", -- next item
previous = "k", -- preview item },
next = "j" -- next item indent_lines = true, -- add an indent guide below the fold icons
}, auto_open = false, -- automatically open the list when you have diagnostics
indent_lines = true, -- add an indent guide below the fold icons auto_close = false, -- automatically close the list when you have no diagnostics
auto_open = false, -- automatically open the list when you have diagnostics auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
auto_close = false, -- automatically close the list when you have no diagnostics auto_fold = false, -- automatically fold a file trouble list at creation
auto_preview = true, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window signs = {
auto_fold = false, -- automatically fold a file trouble list at creation -- icons / text used for a diagnostic
signs = { error = "",
-- icons / text used for a diagnostic warning = "",
error = "", hint = "",
warning = "", information = "",
hint = "", other = "",
information = "", },
other = "" use_lsp_diagnostic_signs = false, -- enabling this will use the signs defined in your lsp client
}, },
use_lsp_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client })
} vim.api.nvim_set_keymap("n", "<leader>xx", "<cmd>Trouble<cr>", { silent = true, noremap = true })
} vim.api.nvim_set_keymap(
vim.api.nvim_set_keymap("n", "<leader>xx", "<cmd>Trouble<cr>", "n",
{silent = true, noremap = true} "<leader>xw",
"<cmd>Trouble lsp_workspace_diagnostics<cr>",
{ silent = true, noremap = true }
) )
vim.api.nvim_set_keymap("n", "<leader>xw", "<cmd>Trouble lsp_workspace_diagnostics<cr>", vim.api.nvim_set_keymap(
{silent = true, noremap = true} "n",
) "<leader>xd",
vim.api.nvim_set_keymap("n", "<leader>xd", "<cmd>Trouble lsp_document_diagnostics<cr>", "<cmd>Trouble lsp_document_diagnostics<cr>",
{silent = true, noremap = true} { silent = true, noremap = true }
)
vim.api.nvim_set_keymap("n", "<leader>xl", "<cmd>Trouble loclist<cr>",
{silent = true, noremap = true}
)
vim.api.nvim_set_keymap("n", "<leader>xq", "<cmd>Trouble quickfix<cr>",
{silent = true, noremap = true}
)
vim.api.nvim_set_keymap("n", "gR", "<cmd>Trouble lsp_references<cr>",
{silent = true, noremap = true}
) )
vim.api.nvim_set_keymap("n", "<leader>xl", "<cmd>Trouble loclist<cr>", { silent = true, noremap = true })
vim.api.nvim_set_keymap("n", "<leader>xq", "<cmd>Trouble quickfix<cr>", { silent = true, noremap = true })
vim.api.nvim_set_keymap("n", "gR", "<cmd>Trouble lsp_references<cr>", { silent = true, noremap = true })
-- twilight -- twilight
require("twilight").setup { require("twilight").setup({
dimming = { dimming = {
alpha = 0.25, -- amount of dimming alpha = 0.25, -- amount of dimming
-- we try to get the foreground from the highlight groups or fallback color -- we try to get the foreground from the highlight groups or fallback color
color = { "Normal", "#cccccc" }, color = { "Normal", "#cccccc" },
}, },
context = 10, -- amount of lines we will try to show around the current line context = 10, -- amount of lines we will try to show around the current line
expand = { -- for treesitter, we we always try to expand to the top-most ancestor with these types expand = { -- for treesitter, we we always try to expand to the top-most ancestor with these types
"function", "function",
"method", "method",
"table", "table",
"if_statement", "if_statement",
}, },
exclude = {}, -- exclude these filetypes exclude = {}, -- exclude these filetypes
} })
-- hound.nvim -- hound.nvim
require("hound").setup { require("hound").setup({
hound_base_url = "http://hound", -- Rely on Tailscale's MagicDNS hound_base_url = "http://hound", -- Rely on Tailscale's MagicDNS
hound_port = 6080, -- the port hound is running on hound_port = 6080, -- the port hound is running on
search_results_buffer = "tabnew", -- how to open the search results (vsplit, split, tabnew) search_results_buffer = "tabnew", -- how to open the search results (vsplit, split, tabnew)
display_file_match_urls = true, -- whether or not urls should be displayed alongside file matches display_file_match_urls = true, -- whether or not urls should be displayed alongside file matches
hound_url_pattern = "https://github.com/{repo}/blob/{revision}/{path}", -- the format of the url displayed for file matches hound_url_pattern = "https://github.com/{repo}/blob/{revision}/{path}", -- the format of the url displayed for file matches
})
vim.api.nvim_set_keymap("n", "<leader>hs", ":Hound", { silent = true, noremap = true })
-- neoclip
require('telescope').load_extension('neoclip')
}
vim.api.nvim_set_keymap("n", "<leader>hs", ":Hound",
{silent = true, noremap = true}
)
-- vim-go -- vim-go
vim.g.go_auto_sameids = 0 vim.g.go_auto_sameids = 0
@@ -286,9 +289,9 @@ vim.g.go_highlight_trailing_whitespace_error = 0
vim.g.go_highlight_types = 1 vim.g.go_highlight_types = 1
vim.g.go_highlight_variable_assignments = 1 vim.g.go_highlight_variable_assignments = 1
vim.g.go_highlight_variable_declarations = 1 vim.g.go_highlight_variable_declarations = 1
vim.g.go_rename_command = 'gopls' vim.g.go_rename_command = "gopls"
vim.g.go_metalinter_autosave = 1 vim.g.go_metalinter_autosave = 1
vim.g.go_metalinter_autosave_enabled = {'golint', 'govet'} vim.g.go_metalinter_autosave_enabled = { "golint", "govet" }
-- vim-terraform -- vim-terraform
vim.g.terraform_align = 1 vim.g.terraform_align = 1
@@ -307,29 +310,19 @@ vim.g.vim_markdown_frontmatter = 1
vim.g.vim_markdown_new_list_item_indent = 0 vim.g.vim_markdown_new_list_item_indent = 0
-- vim-prettier -- vim-prettier
vim.g['prettier#autoformat'] = 1 vim.g["prettier#autoformat"] = 1
-- git-blame -- git-blame
vim.g.gitblame_enabled = 0 vim.g.gitblame_enabled = 0
-- telescope -- telescope
vim.api.nvim_set_keymap("n", "<leader>ff", "<cmd>Telescope find_files<cr>", vim.api.nvim_set_keymap("n", "<leader>ff", "<cmd>Telescope find_files<cr>", { silent = true, noremap = true })
{silent = true, noremap = true} vim.api.nvim_set_keymap("n", "<leader>fg", "<cmd>Telescope live_grep<cr>", { silent = true, noremap = true })
)
vim.api.nvim_set_keymap("n", "<leader>fg", "<cmd>Telescope live_grep<cr>",
{silent = true, noremap = true}
)
-- NvimTree -- NvimTree
vim.api.nvim_set_keymap("n", "<leader>n", "<cmd>NvimTreeToggle<cr>", vim.api.nvim_set_keymap("n", "<leader>n", "<cmd>NvimTreeToggle<cr>", { noremap = true })
{noremap = true} vim.api.nvim_set_keymap("n", "<leader>r", "<cmd>NvimTreeRefresh<cr>", { noremap = true })
) vim.api.nvim_set_keymap("n", "<leader>nf", "<cmd>NvimTreeFindFile<cr>", { noremap = true })
vim.api.nvim_set_keymap("n", "<leader>r", "<cmd>NvimTreeRefresh<cr>",
{noremap = true}
)
vim.api.nvim_set_keymap("n", "<leader>nf", "<cmd>NvimTreeFindFile<cr>",
{noremap = true}
)
-- syntastic -- syntastic
vim.g.syntastic_always_populate_loc_list = 1 vim.g.syntastic_always_populate_loc_list = 1
@@ -338,5 +331,4 @@ vim.g.syntastic_check_on_open = 1
vim.g.syntastic_check_on_wq = 0 vim.g.syntastic_check_on_wq = 0
-- completion-nvim -- completion-nvim
vim.cmd[[autocmd BufEnter * lua require'completion'.on_attach()]] vim.cmd([[autocmd BufEnter * lua require'completion'.on_attach()]])