rework nvim
This commit is contained in:
parent
13909efa88
commit
19eb865542
7 changed files with 74 additions and 26 deletions
|
@ -1,5 +1,6 @@
|
||||||
## Telescope @custom:
|
## Telescope @custom:
|
||||||
Search, Preview and Open file | <leader>ff
|
Search, Preview and Open file | <leader>ff
|
||||||
|
Live grep of all files in current directory| <leader>fg
|
||||||
|
|
||||||
## Formatter @custom:
|
## Formatter @custom:
|
||||||
Format current buffer | <leader>f
|
Format current buffer | <leader>f
|
||||||
|
@ -9,3 +10,6 @@ Format and write current buffer | <leader>F
|
||||||
Toggles the comment state of the selected line(s) | [count]<leader>c<space>
|
Toggles the comment state of the selected line(s) | [count]<leader>c<space>
|
||||||
Comment out the current line or text selected in visual mode | [count]<leader>cc
|
Comment out the current line or text selected in visual mode | [count]<leader>cc
|
||||||
Toggles the comment state of the selected line(s) individually | [count]<leader>ci
|
Toggles the comment state of the selected line(s) individually | [count]<leader>ci
|
||||||
|
|
||||||
|
## cheatsheet @custom:
|
||||||
|
Shows a searchable list of all keybindings | <leader>?
|
||||||
|
|
52
nvim/init.lua
Normal file
52
nvim/init.lua
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
vim.o.nocompatible = true
|
||||||
|
vim.o.showmatch = true
|
||||||
|
|
||||||
|
vim.wo.number = true
|
||||||
|
vim.wo.relativenumber = true
|
||||||
|
|
||||||
|
-- Set background color for ColorColumn
|
||||||
|
vim.o.cc = 80
|
||||||
|
vim.api.nvim_exec(
|
||||||
|
[[
|
||||||
|
hi ColorColumn ctermbg=black guibg=black
|
||||||
|
]],
|
||||||
|
false
|
||||||
|
)
|
||||||
|
|
||||||
|
vim.o.mouse = "a"
|
||||||
|
|
||||||
|
vim.o.ignorecase = true
|
||||||
|
vim.o.smartcase = true
|
||||||
|
vim.o.expandtab = true
|
||||||
|
vim.o.shiftwidth = 4
|
||||||
|
vim.o.tabstop = 4
|
||||||
|
vim.o.cursorline = true
|
||||||
|
|
||||||
|
-- Enable auto-indentation
|
||||||
|
vim.o.autoindent = true
|
||||||
|
|
||||||
|
-- Set completion options
|
||||||
|
vim.o.completeopt = "menu,menuone,noselect"
|
||||||
|
|
||||||
|
-- Highlight search results
|
||||||
|
vim.o.hlsearch = true
|
||||||
|
|
||||||
|
-- Highlight current line
|
||||||
|
vim.o.cursorline = true
|
||||||
|
|
||||||
|
-- Increase speed for terminals
|
||||||
|
vim.o.ttyfast = true
|
||||||
|
|
||||||
|
-- Highlight on yank (copy). It will do a nice highlight blink of the thing you just copied.
|
||||||
|
vim.api.nvim_exec(
|
||||||
|
[[
|
||||||
|
autocmd! TextYankPost * silent! lua vim.highlight.on_yank()
|
||||||
|
autocmd! BufWritePost * FormatWrite
|
||||||
|
]],
|
||||||
|
false
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Enable filetype plugins
|
||||||
|
vim.cmd("filetype plugin on")
|
||||||
|
|
||||||
|
require("plugins")
|
|
@ -1,21 +0,0 @@
|
||||||
set nocompatible
|
|
||||||
set relativenumber
|
|
||||||
set cc=80
|
|
||||||
set ignorecase
|
|
||||||
hi ColorColumn ctermbg=black guibg=black
|
|
||||||
set tabstop=4
|
|
||||||
set expandtab
|
|
||||||
set shiftwidth=4
|
|
||||||
set autoindent
|
|
||||||
set completeopt=menu,menuone,noselect
|
|
||||||
|
|
||||||
filetype plugin on
|
|
||||||
|
|
||||||
augroup FormatAutogroup
|
|
||||||
autocmd!
|
|
||||||
autocmd BufWritePost * FormatWrite
|
|
||||||
augroup END
|
|
||||||
|
|
||||||
so "keybinding.vim"
|
|
||||||
|
|
||||||
lua require('plugins')
|
|
|
@ -1,2 +0,0 @@
|
||||||
nnoremap <silent> <leader>f :Format<CR>
|
|
||||||
nnoremap <silent> <leader>F :FormatWrite<CR>
|
|
8
nvim/lua/commander-config.lua demete
Normal file
8
nvim/lua/commander-config.lua demete
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
integration = {
|
||||||
|
telescope = {
|
||||||
|
enable = true,
|
||||||
|
-- Optional, you can use any telescope supported theme
|
||||||
|
theme = require("telescope.themes").commander,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
7
nvim/lua/keybinding.lua
Normal file
7
nvim/lua/keybinding.lua
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
local opts = { noremap = true, silent = true }
|
||||||
|
local keymap = vim.api.nvim_set_keymap
|
||||||
|
|
||||||
|
vim.g.mapleader = ","
|
||||||
|
|
||||||
|
keymap("n", "<C-p>", ":Telescope find_files<CR>", opts)
|
||||||
|
keymap("n", "<S-C-p>", ":Telescope<CR>", opts)
|
|
@ -10,7 +10,7 @@ local ensure_packer = function()
|
||||||
end
|
end
|
||||||
|
|
||||||
local packer_bootstrap = ensure_packer()
|
local packer_bootstrap = ensure_packer()
|
||||||
|
require("keybinding")
|
||||||
return require("packer").startup(function(use)
|
return require("packer").startup(function(use)
|
||||||
use("wbthomason/packer.nvim")
|
use("wbthomason/packer.nvim")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue