rework nvim

This commit is contained in:
Nydragon 2024-02-18 09:57:29 +09:00
parent 13909efa88
commit 19eb865542
7 changed files with 74 additions and 26 deletions

View file

@ -1,5 +1,6 @@
## Telescope @custom:
Search, Preview and Open file | <leader>ff
Live grep of all files in current directory| <leader>fg
## Formatter @custom:
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>
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
## cheatsheet @custom:
Shows a searchable list of all keybindings | <leader>?

52
nvim/init.lua Normal file
View 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")

View file

@ -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')

View file

@ -1,2 +0,0 @@
nnoremap <silent> <leader>f :Format<CR>
nnoremap <silent> <leader>F :FormatWrite<CR>

View 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
View 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)

View file

@ -10,7 +10,7 @@ local ensure_packer = function()
end
local packer_bootstrap = ensure_packer()
require("keybinding")
return require("packer").startup(function(use)
use("wbthomason/packer.nvim")
@ -90,7 +90,7 @@ return require("packer").startup(function(use)
require("nvim-tree-config")
require("nvim-cmp-config")
require("autoclose-config")
require("barbar-config")
require("barbar-config")
--require("image-config")
require("telescope-config")
-- require('ale-config')
@ -98,7 +98,7 @@ return require("packer").startup(function(use)
require("lualine").setup()
require("virt-column").setup()
if packer_bootstrap then
if packer_bootstrap then
require("packer").sync()
end
end)