vim : option change to use.

This commit is contained in:
2024-08-28 14:25:38 +09:00
parent 054cea8511
commit 7a2834b617
3 changed files with 9 additions and 4 deletions

View File

@ -9,7 +9,7 @@ return {
"williamboman/mason-lspconfig.nvim",
config = function()
require("mason-lspconfig").setup({
ensure_installed = {"lua_ls", "clangd", "cmake", "cssls", "html"}
ensure_installed = {"lua_ls", "clangd"}
})
end
},

View File

@ -42,7 +42,13 @@ return {
{
"catppuccin/nvim",
config = function()
vim.cmd.colorscheme "catppuccin"
-- vim.cmd.colorscheme "catppuccin"
end
},
{
"tomasr/molokai",
config = function()
vim.cmd.colorscheme "molokai"
end
},
}

View File

@ -6,6 +6,7 @@ vim.cmd("set ai") -- auto indent
vim.cmd("set si") -- smart indent
vim.cmd("set cindent") -- c style indent
vim.cmd("set expandtab") -- tab to space
vim.cmd("set shiftwidth=4") -- shift order 4step
vim.cmd("set tabstop=4") -- tab order 4step
vim.cmd("set hlsearch") -- highlight empathize the word.
@ -49,5 +50,3 @@ vim.keymap.set('n', '<C-k>', '<C-w>k', {})
--
vim.keymap.set('n', '<F12>', ':cd %:p:h<cr>:term zsh<cr>', {})
vim.keymap.set('n', '<F7>', '@a', {})